Creating queries

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:

image

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?