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     |
+----------+
| "follow" |
| "serve"  |
+----------+

Last update: October 24, 2023