I am using GraphObject to map Neo4j nodes to Python Classes, I like when I get a Node with relationships because I get its nodes too as Python Classes. For example, if my class is Person, I can use Person.select, and get Person objects.
Now, I need to execute a complex query so that It needs to call a spatial procedure, I can only do this with graph.run("MY_COMPLEX_QUERY"), but this returns nodes (and these nodes don't have relationships).
Is it posible to execute any query with GraphObject selector with a single query? Any ideas?
Thanks!!, Regards
PD: I can get all ids, and after use Person.select by id, but it isn't good solution.