Skip to content

DESCRIBE SPACE

DESCRIBE SPACE returns the information about the specified graph space.

Syntax

You can use DESC instead of DESCRIBE for short.

DESC[RIBE] SPACE <graph_space_name>;

The DESCRIBE SPACE statement is different from the SHOW SPACES statement. For details about SHOW SPACES, see SHOW SPACES.

Example

nebula> DESCRIBE SPACE basketballplayer;
+----+--------------------+------------------+----------------+---------+------------+--------------------+-------------+-------------------------------+---------+
| ID | Name               | Partition Number | Replica Factor | Charset | Collate    | Vid Type           | Atomic Edge | Zones                         | Comment |
+----+--------------------+------------------+----------------+---------+------------+--------------------+-------------+-------------------------------+---------+
| 1  | "basketballplayer" | 10               | 1              | "utf8"  | "utf8_bin" | "FIXED_STRING(32)" | false       | "default_zone_127.0.0.1_9779" |         |
+----+--------------------+------------------+----------------+---------+------------+--------------------+-------------+-------------------------------+---------+

Last update: February 14, 2022
Back to top