-
Notifications
You must be signed in to change notification settings - Fork 483
MERGE incorrectly creates multiple vertices #1691
Copy link
Copy link
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
SELECT * FROM cypher('playground', $$
unwind ["foo", "foo"] as each
merge (v:TEST {name: each})
return v
$$) AS (v agtype)returns
[
{
"v": {
"id": 3659174697238531,
"label": "TEST",
"properties": {
"name": "foo"
}
}
},
{
"v": {
"id": 3659174697238532,
"label": "TEST",
"properties": {
"name": "foo"
}
}
}
]creates two vertices when it should only create one. (confirmed with neo4j)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Type
Fields
Give feedbackNo fields configured for issues without a type.