Skip to content

SHOW TAGS/EDGES

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

Syntax

SHOW {TAGS | EDGES}

Examples

Show tags:

nebula> SHOW TAGS;
+----------+
| Name     |
+----------+
| "player" |
+----------+
| "star"   |
+----------+
| "team"   |
+----------+
Got 3 rows (time spent 1461/2114 us)

Show edge types:

nebula> SHOW EDGES;
+---------+
| Name    |
+---------+
| "like"  |
+---------+
| "serve" |
+---------+
Got 2 rows (time spent 1039/1687 us)

Last update: December 31, 2020
Back to top