(p2p_property_graph_string)
| 673 | |
| 674 | @pytest.fixture(scope="module") |
| 675 | def p2p_project_directed_graph_string(p2p_property_graph_string): |
| 676 | pg = p2p_property_graph_string.project( |
| 677 | vertices={"person": ["weight"]}, edges={"knows": ["dist"]} |
| 678 | ) |
| 679 | yield pg |
| 680 | |
| 681 | |
| 682 | @pytest.fixture(scope="module") |