memgraph/tools/tests/client/output_unfinished_query.txt

39 lines
1.4 KiB
Plaintext
Raw Normal View History

mg-client
Connected to 'memgraph://127.0.0.1:7687'
memgraph> CREATE (n:Ovid{quote:"Exitus Acta Probat"}) RETURN n; MATCH (n)
+-----------------------------------+
|n |
+-----------------------------------+
|(:Ovid {quote: Exitus Acta Probat})|
+-----------------------------------+
memgraph> MATCH (n)RETURN n;
+-----------------------------------+
|n |
+-----------------------------------+
|(:Ovid {quote: Exitus Acta Probat})|
+-----------------------------------+
memgraph> MATCH (n) RETURN n; CREATE (n:Bible{quote:"Fiat Lux"}) RETURN n; CREATE (n:Plinius{quote:"In vino veritas"}) RETURN n; MATCH
+-----------------------------------+
|n |
+-----------------------------------+
|(:Ovid {quote: Exitus Acta Probat})|
+-----------------------------------+
+--------------------------+
|n |
+--------------------------+
|(:Bible {quote: Fiat Lux})|
+--------------------------+
+-----------------------------------+
|n |
+-----------------------------------+
|(:Plinius {quote: In vino veritas})|
+-----------------------------------+
memgraph> MATCH(n:Plinius)
-> RETURN
-> n;
+-----------------------------------+
|n |
+-----------------------------------+
|(:Plinius {quote: In vino veritas})|
+-----------------------------------+
memgraph>