You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This query runs fine: MATCH (a:role {name: "joe"})-[r]->(b:place) RETURN a, b
Trying to return 'r' relationships in results makes it incredibly slow... takes nearly 10 seconds to respond: MATCH (a:role {name: "joe"})-[r]->(b:place) RETURN a, r, b
My graph is very small (<1000 nodes), and query works fine in Neo4j browser.
It is only slow with Py2Neo (Version: 2021.2.3)
The text was updated successfully, but these errors were encountered:
This query runs fine:
MATCH (a:role {name: "joe"})-[r]->(b:place) RETURN a, b
Trying to return 'r' relationships in results makes it incredibly slow... takes nearly 10 seconds to respond:
MATCH (a:role {name: "joe"})-[r]->(b:place) RETURN a, r, b
My graph is very small (<1000 nodes), and query works fine in Neo4j browser.
It is only slow with Py2Neo (Version: 2021.2.3)
The text was updated successfully, but these errors were encountered: