2bd0822155
Reviewers: teon.banek, mferencevic Reviewed By: teon.banek, mferencevic Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1616
27 lines
427 B
Plaintext
27 lines
427 B
Plaintext
mg-client
|
|
Connected to 'memgraph://127.0.0.1:7687'
|
|
memgraph> CREATE (n:Node) RETURN n;
|
|
+-------+
|
|
|n |
|
|
+-------+
|
|
|(:Node)|
|
|
+-------+
|
|
memgraph> MATCH (n:Node) RETURN n;
|
|
+-------+
|
|
|n |
|
|
+-------+
|
|
|(:Node)|
|
|
+-------+
|
|
memgraph> CREATE (n:Vertex) RETURN n;
|
|
+---------+
|
|
|n |
|
|
+---------+
|
|
|(:Vertex)|
|
|
+---------+
|
|
memgraph> MATCH (n:Vertex) RETURN n;
|
|
+---------+
|
|
|n |
|
|
+---------+
|
|
|(:Vertex)|
|
|
+---------+
|
|
memgraph> |