We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7613427 commit 8254b49Copy full SHA for 8254b49
graphdatascience/tests/integration/test_graph_ops.py
@@ -1,3 +1,4 @@
1
+import warnings
2
from typing import Generator
3
4
import numpy as np
@@ -738,6 +739,9 @@ def test_graph_relationships_stream_without_arrow(gds_without_arrow: GraphDataSc
738
739
else:
740
result = gds_without_arrow.beta.graph.relationships.stream(G, ["REL", "REL2"])
741
742
+ warnings.filterwarnings(
743
+ "ignore", category=DeprecationWarning, message="The query used a deprecated function: `id`."
744
+ )
745
expected = gds_without_arrow.run_cypher(
746
"MATCH (n)-[r]->(m) RETURN id(n) AS src_id, id(m) AS trg_id, type(r) AS rel_type"
747
)
0 commit comments