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'm unable to create relationships in a batch. The moment I add a :create_relationship call to a batch, @neo.batch returns nil and nothing is created in my graph.
I've tried [:create_relationship, "has", "{0}", "{2}"] instead with the same failing result. Since there is no error raised when my batch fails, I've been unable to track down exactly what is going wrong.
The text was updated successfully, but these errors were encountered:
I tried it both ways on version 1.7 (create unique node first, or create regular node first) all fails.
Tried it on 1.8, creating a regular node first works, but then the relationship is pointing the wrong way. If I try reversing the numbers {2} {0} I get an error.
I'm unable to create relationships in a batch. The moment I add a :create_relationship call to a batch, @neo.batch returns nil and nothing is created in my graph.
The following fails:
However, the nodes get created (without the relationship) if I just run:
I've tried
[:create_relationship, "has", "{0}", "{2}"]
instead with the same failing result. Since there is no error raised when my batch fails, I've been unable to track down exactly what is going wrong.The text was updated successfully, but these errors were encountered: