cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Creating queries

D_C
Node Clone

I just spent some time debugging queries. There has to be a better ORM type driver than all this gibberish line noise? I haven't even got my query complete yet.

I tried using py2neo but it seems really lacking in features, for example how do I do an on match incremetor like:

3X_c_7_c71a717b09368e103757c431b47611df268d336b.png

2 REPLIES 2

you could just use SET nid.count = colaesce(nid.count,0) +1

Did you check neomodel?

ok that's a nice syntax trick. I'll look at neomodel too.
I realized after that the python driver takes named $parameters so that makes life a lot easier.

neoomodel documentation looks a bit more thorough than py2neo, i was wondering if you have any guidance on the pros/cons/differences?