You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would request that ALL batch actions (create and create_or_update in addition to get_or_create) support this. My use case is a batch insert/update into Postgresql, followed by a batch insert/update into Neo4j, but as soon as I need to establish relationships, I can no longer operate in batch, but must loop through each Neo4j Node instance and set the relationships. I'm relatively new to Neo4j, so I don't know if there's a performance hit (Postgres is much slower issuing individual statements than a bulk insert/update), but if nothing else, it will be cleaner and more comprehensible code, IMO. Thanks!
Hi,
I'm using
get_or_create()
class method to bulk create a set of nodes.However, I also would like to pass additional relationship properties as well, like a
date
for example:What do you think ?
If we compare with py2neo, they separated the bulk operations into 2 functions:
Could you add support for that in the future ?
Bulb node insertion and merging is super useful, especially with a high-level OGM like Neomode.
Thanks for the support !
The text was updated successfully, but these errors were encountered: