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