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 | Group     | Comment |
+----+--------------------+------------------+----------------+---------+------------+--------------------+-------------+-----------+---------+
| 1  | "basketballplayer" | 10               | 1              | "utf8"  | "utf8_bin" | "FIXED_STRING(32)" | false       | "default" |         |
+----+--------------------+------------------+----------------+---------+------------+--------------------+-------------+-----------+---------+

Last update: August 30, 2021
Back to top