Skip to content

DESCRIBE INDEX

DESCRIBE {TAG | EDGE} INDEX <index_name>

Use DESCRIBE INDEX to get information about the index. DESCRIBE INDEX returns the following columns:

  • Field

    The property name. - Type

    The property type.

Example

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: December 16, 2020
Back to top