Get a list of all running batch updates
GET/graph/:graph_id/batch
Experimental: This API is not stable and might be subject of change.
Get a list of all running batch updates.
Request​
Path Parameters
graph_id stringrequired
The identifier of the graph
Example: fix
Responses​
- 200
Ok message
- application/json
- Schema
- Example (from schema)
Schema
id string
the id of the change.
created string
datetime in utc, when the batch update has been created
affected_nodes string[]
The root nodes of the subgraphs that will be changed during the update
[
{
"id": "XYQaijCNJUVc",
"created": "2021-06-29T13:53:39.329Z",
"affected_nodes": [
"sub_graph_root_1",
"sub_graph_root_2"
]
}
]
Loading...