FYI: neomodel is also beginning to be outdated. It's not compatible with the latest neo-driver version for instance.
It lacks updates, and apart from that, we had some serious threading issues with it - seems like it is not thread safe/not synchronous, or not doing the whole async/sync thing correctly. (since Neo4J is async, and Django is not (yet))
The idea behind these libs was to have some kind of abstraction layer, like an ORM, but what's the point if it is not any more convenient than Cypher, nor can it do everything Cypher can, so you start writing queries in Cypher anyhow. Having something graph database agnostic is also fake, since it only serves Neo4J.
We already rewrote all queries in Cypher, now I just have to find a way to do the data modelling natively.