Update a node with the given node id
PATCH/graph/:graph_id/node/:node_id
Experimental: This API is not stable and might be subject of change.
Update a node with the given node id
Request​
Path Parameters
graph_id stringrequired
The identifier of the graph
Example: fix
node_id stringrequired
The identifier of the node
- application/json
Body
The partial object data to patch.
property name* any
Responses​
- 200
Return the patched node
- application/json
- Schema
- Example (from schema)
Schema
kind string
The kind of this node.
property name* any
{
"id": "123456",
"reported": {
"kind": "test.person",
"name": "Batman",
"city": "Gotham"
}
}
Loading...