memgraph/tests/public_benchmark/ldbc/test_cases/queries/update_3.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
235 B
Plaintext

// LdbcUpdate3AddCommentLike{personId=102, commentId=2199029728710, creationDate=Thu Sep 13 11:38:06 CEST 2012}
MATCH (p:Person {id:"102"}),
(m:Comment {id:"2199029728710"})
CREATE (p)-[:LIKES {creationDate:1347529086733}]->(m);