Show Graphs
Shows information and characteristics of graphs that exist on the graph server.
Output Parameter Description
| Name |
Type |
Description |
| result |
boolean |
Indicates a successf. This call will fails of the graph
specified in the request does not exist. |
| graph_names |
array of
strings |
Name(s) of the graph(s). |
| directed |
array of
booleans |
Whether or not the edges of the graph have directions (bi-
directional edges can still exist in directed graphs).
Consult Directed Graphs
for more details. |
| num_nodes |
array of
longs |
Total number of nodes in the graph. |
| num_edges |
array of
longs |
Total number of edges in the graph. |
| is_persisted |
array of
booleans |
Shows whether or not the graph is persisted (saved and loaded
on launch). |
| is_sync_db |
array of
booleans |
Shows whether or not the graph is linked to the original
tables that created it, and will potentially be re-created
instead loaded from persist on launch. |
| has_insert_table_monitor |
array of
booleans |
Shows whether or not the graph has an insert table monitor
attached to it. |
| original_request |
array of
strings |
The orignal client request used to create the graph (before
any expression evaluation or separator processing). |
| info |
map of
string
to
strings |
Additional information. |