memgraph/tools/tests/client/output_unfinished_query.txt
Marko Culinovic 2bd0822155 Implement console client for memgraph
Reviewers: teon.banek, mferencevic

Reviewed By: teon.banek, mferencevic

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D1616
2018-10-02 13:18:54 +02:00

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>