Create a new node under the given parent node
POSThttps://localhost:8900/graph/:graph_id/node/:node_id/under/:parent_node_id
Experimental: This API is not stable and might be subject of change.
Create a new node under the given parent node.
Request​
Path Parameters
graph_id stringrequired
The identifier of the graph
Example: fix
node_id stringrequired
The identifier of the node
parent_node_id stringrequired
The identifier of the parent node
- application/json
Body
The node document to create.
kind string
The kind of this node.
property name* any
Responses​
- 200
Return the created 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"
}
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://localhost:8900/graph/:graph_id/node/:node_id/under/:parent_node_id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"id": "123456",
"reported": {
"kind": "test.person",
"name": "Batman",
"city": "Gotham"
}
}'