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

ngql SHOW {TAGS | EDGES};

Examples

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

nebula> SHOW EDGES; +----------+ | Name | +----------+ | "follow" | | "serve" | +----------+ ```


Last update: December 1, 2021