(p2p_property_graph_undirected)
| 665 | |
| 666 | @pytest.fixture(scope="module") |
| 667 | def p2p_project_undirected_graph(p2p_property_graph_undirected): |
| 668 | pg = p2p_property_graph_undirected.project( |
| 669 | vertices={"person": ["weight"]}, edges={"knows": ["dist"]} |
| 670 | ) |
| 671 | yield pg |
| 672 | |
| 673 | |
| 674 | @pytest.fixture(scope="module") |