Skip to main content
Version: 3.11.0

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