Skip to content

SHOW TAGS/EDGES

The SHOW TAGS statement shows all the tags in the current graph space.

The SHOW EDGES statement shows all the edge types in the current graph space.

Syntax

SHOW {TAGS | EDGES};

Examples

nebula> SHOW TAGS;
+----------+
| Name     |
+----------+
| "player" |
+----------+
| "star"   |
+----------+
| "team"   |
+----------+

nebula> SHOW EDGES;
+---------+
| Name    |
+---------+
| "like"  |
+---------+
| "serve" |
+---------+

Last update: August 31, 2021
Back to top