a8e0792609
Summary: Add LDBC helper scripts. Reviewers: teon.banek, mferencevic, mislav.bradac Reviewed By: teon.banek Subscribers: pullbot, buda Differential Revision: https://phabricator.memgraph.io/D563
12 lines
415 B
Plaintext
12 lines
415 B
Plaintext
MATCH
|
|
(start:Person {id:"24189255818757"})<-[:HAS_CREATOR]-()<-[:REPLY_OF]-(comment:Comment)-[:HAS_CREATOR]->(person:Person)
|
|
RETURN
|
|
person.id AS personId,
|
|
person.firstName AS personFirstName,
|
|
person.lastName AS personLastName,
|
|
comment.creationDate AS commentCreationDate,
|
|
comment.id AS commentId,
|
|
comment.content AS commentContent
|
|
ORDER BY commentCreationDate DESC, toInteger(commentId) ASC
|
|
LIMIT 20;
|