memgraph/tools/tests/client/output_multiline_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

49 lines
1.8 KiB
Plaintext

mg-client
Connected to 'memgraph://127.0.0.1:7687'
memgraph> CREATE (n:Constantine{quote:"In hoc signo vinces"})
-> RETURN n;
+-------------------------------------------+
|n |
+-------------------------------------------+
|(:Constantine {quote: In hoc signo vinces})|
+-------------------------------------------+
memgraph> MATCH
-> (n)
-> RETURN
-> n;
+-------------------------------------------+
|n |
+-------------------------------------------+
|(:Constantine {quote: In hoc signo vinces})|
+-------------------------------------------+
memgraph> CREATE (n:Erdody{quote:
-> "Regnum regno non praescribit leges"})
-> RETURN
-> n;
+-----------------------------------------------------+
|n |
+-----------------------------------------------------+
|(:Erdody {quote: Regnum regno non praescribit leges})|
+-----------------------------------------------------+
memgraph> MATCH (n:Erdody) RETURN
-> n;
+-----------------------------------------------------+
|n |
+-----------------------------------------------------+
|(:Erdody {quote: Regnum regno non praescribit leges})|
+-----------------------------------------------------+
memgraph> CREATE (n:Caesar{quote:"Alea iacta
-> est"}) RETURN n;
+---------------------------------+
|n |
+---------------------------------+
|(:Caesar {quote: Alea iacta est})|
+---------------------------------+
memgraph> MATCH (n:Caesar)
-> RETURN n;
+---------------------------------+
|n |
+---------------------------------+
|(:Caesar {quote: Alea iacta est})|
+---------------------------------+
memgraph>