There is currently no way to describe a created property graph except by returning to the original query used to create it. A nice-to-have would be to describe property graph <pg_name> and output the vertex and edge tables. The output could be something along the lines of:
describe property graph <pg_name>
----
| table_name | label | vertex_table | source pk | source fk | destination pk | destination fk |
| -------------------------------------------------------------------------------------- |
| features | features | YES | NULL | NULL | NULL | NULL |
| edges | edges | NO | follower | numeric_id | followed | numeric_id | (The source and destination table should also be included)
--------------------------------------------------------------------
There is currently no way to describe a created property graph except by returning to the original query used to create it. A nice-to-have would be to
describe property graph <pg_name>
and output the vertex and edge tables. The output could be something along the lines of: