-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't use assignment for MERGE/Update #105
Comments
This causes a critical problem for data that has been loaded from CSV files where the existing external |
Andy2003
added a commit
to Andy2003/neo4j-graphql-java
that referenced
this issue
Aug 28, 2020
…nset for when updating a node. Now we always use `SET x += {}` to update properties.
jexp
pushed a commit
that referenced
this issue
Aug 30, 2020
… updating a node. (#117) Now we always use `SET x += {}` to update properties.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See the discussion here:
#99 (review)
Switch from
SET x = {...}
toSET x += {}
or individual set operations.We could also consider putting the data just into a parameter instead. So it would become
SET x += $data
The text was updated successfully, but these errors were encountered: