c553a309d2
Summary: If the `STDIN_FILENO` is a `TTY`, then an interactive command prompt is shown. Otherwise, client runs in non-interactive mode. Shell commands start with a colon sign, and end at the end of line. Csv and tabular output formats are supported. Reviewers: teon.banek, mferencevic Reviewed By: teon.banek, mferencevic Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1633
7 lines
221 B
Plaintext
7 lines
221 B
Plaintext
CREATE (n:Ovid{quote:"Exitus Acta Probat"}) RETURN n; MATCH (n)
|
|
RETURN n;
|
|
MATCH (n) RETURN n; CREATE (n:Bible{quote:"Fiat Lux"}) RETURN n; CREATE (n:Plinius{quote:"In vino veritas"}) RETURN n; MATCH
|
|
(n:Plinius)
|
|
RETURN
|
|
n;
|