memgraph/tests/public_benchmark/ldbc/test_cases/queries/update_8.oc
Teon Banek 26297ca641 ldbc: Extract update queries
Summary:
Convert update queries to oC supported by MG
Ignore ve2 in ldbc

Reviewers: buda, mislav.bradac, florijan

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D733
2017-09-01 14:13:04 +02:00

5 lines
262 B
Plaintext

// LdbcUpdate8AddFriendship{person1Id=21990232558208, person2Id=32985348841200, creationDate=Thu Sep 13 11:43:09 CEST 2012}
MATCH (p1:Person {id:"21990232558208"}),
(p2:Person {id:"32985348841200"})
CREATE (p1)-[:KNOWS {creationDate:1347529389109}]->(p2);