2bd0822155
Reviewers: teon.banek, mferencevic Reviewed By: teon.banek, mferencevic Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1616
39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
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> |