Open
Description
SHOW TAGS/EDGES;
The command returns only the Name column. Description and data type columns do not need to be queried with the DESCRIBE EDGE follow; statement.
nebula> SHOW TAGS;
+------------+
| Name |
+------------+
| "player" |
| "star" |
| "team" |
+------------+
nebula> SHOW EDGES;
+------------+
| Name |
+------------+
| "follow" |
| "serve" |
+------------+
In the project, if the edge and point schema information in a space is displayed, multiple queries are required to display it completely.
Is there a related sentence that can get the result?
Activity