Replies: 1 comment 2 replies
-
@swilly22 please check open cypher deleted entities persistency tests https://github.com/opencypher/openCypher/blob/master/tck/features/clauses/delete/Delete6.feature edit: |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The rules for accessing a deleted entity aren't well defined.
Consider:
MATCH (a) DELETE a RETURN a
Should
a
be returned? if so are we expecting A's label(s), ID and attributes to return?What about this query:
MATCH (a:A), (b:B) DELETE a SET b.v = a.v
Do we expect
b.v
to takea.v
original value ?As I see it there are two options:
Thoughts?
1 vote ·
Beta Was this translation helpful? Give feedback.
All reactions