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
17 lines
261 B
Plaintext
17 lines
261 B
Plaintext
CREATE (n:Constantine{quote:"In hoc signo vinces"})
|
|
RETURN n;
|
|
MATCH
|
|
(n)
|
|
RETURN
|
|
n;
|
|
CREATE (n:Erdody{quote:
|
|
"Regnum regno non praescribit leges"})
|
|
RETURN
|
|
n;
|
|
MATCH (n:Erdody) RETURN
|
|
n;
|
|
CREATE (n:Caesar{quote:"Alea iacta
|
|
est"}) RETURN n;
|
|
MATCH (n:Caesar)
|
|
RETURN n;
|