-
Notifications
You must be signed in to change notification settings - Fork 468
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
when creating multiple vertices like this
SELECT * FROM cypher('playground', $$
UNWIND [{first: 'jon', last: 'snow'}, {first: 'ned', last: 'stark'}] AS map
MERGE (v:PERSON {first: map.first})
SET v=map
RETURN v
$$) AS (v agtype)returns 2 vertices, but all the vertices after the first one will be incomplete. e.g.
SELECT * FROM cypher('playground', $$
MATCH (v:PERSON)
RETURN v
$$) AS (v agtype)returns
{"id": 3940649673949198, "label": "PERSON", "properties": {"last": "snow", "first": "jon"}}::vertex
{"id": 3940649673949199, "label": "PERSON", "properties": {"first": "ned"}}::vertexNote the first vertex is correct but the second vertex is missing the "last" field. Very strange.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working