grand-cypher
grand-cypher copied to clipboard
Implementation of the Cypher language for searching NetworkX graphs
Awesome library! Exactly what i needed. Aggregate functions don't seem to work though https://neo4j.com/docs/cypher-manual/current/functions/aggregating/
Hello, thank you for the great project :) In how far are equijoins exactly supported? Given that I have the following NetworkX graph: ``` G = nx.DiGraph() G.add_node("x") G.add_node("y") G.add_node("z")...
Graph mutations (updating, deleting, and creating vertices using Cypher) are a big engineering change, and will likely require a lot of corner-case tests. I previously listed this as a "not-planned"...
@j6k4m8 do you have any idea how the implementation for optional match should be? Not sure if isomorphic search can do this. This is helpful for query with variable/dynamic length...
I am wondering why in the example below in the result of query we see the edge with label `friends`? In query it was requested to traverse only edges with...
matching for things like `where not (a)-->(b)`