Skip to content

DESCRIBE INDEX

DESCRIBE INDEX can get the information about the index with a given name, including the property name (Field) and the property type (Type) of the index.

Syntax

ngql DESCRIBE {TAG | EDGE} INDEX <index_name>;

Examples

```ngql nebula> DESCRIBE TAG INDEX player_index_0; +--------+--------------------+ | Field | Type | +--------+--------------------+ | "name" | "fixed_string(30)" | +--------+--------------------+

nebula> DESCRIBE TAG INDEX player_index_1; +--------+--------------------+ | Field | Type | +--------+--------------------+ | "name" | "fixed_string(10)" | | "age" | "int64" | +--------+--------------------+ ```


Last update: October 27, 2021