Lists graph names in lexicographic order. Accepts an optional item limit (default 100), an exclusive name cursor for continuation, and an as_of timestamp to list the graphs visible at an earlier instant.
Paginated responses use opaque cursors. Clients should pass the returned cursor back to the same command shape and must not parse cursor contents.
Examples
List graphs.
CLI
$ strata graph create social
$ strata graph list
Wire
{"graph":"social","type":"graph_create"}
{"type":"graph_list"}
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
as_of | integer | no | Optional timestamp in microseconds. Reads the graph state visible at that instant. |
cursor | string | no | Optional exclusive graph cursor. |
limit | integer | no | Optional item limit. Defaults to 100. |
Plus the optional scope: branch and space (default to the session branch and the "default" space).
Returns
Page<String, String>.
Errors
failed_precondition.engine.runtime_closednot_found.engine.branchinvalid_argument.engine.product_spaceinvalid_argument.engine.graph_name
Invocation
- CLI:
strata graph list - Wire type:
graph_list