memgraph/tools/tests/client/output_query_per_line.txt

27 lines
427 B
Plaintext
Raw Normal View History

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>