Create a new graph
POSThttps://localhost:8900/graph/:graph_id
Create a new graph
Request​
Path Parameters
graph_id stringrequired
The identifier of the graph
Example: fix
Responses​
- 200
The created graph with the root 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 -X POST 'https://localhost:8900/graph/:graph_id' \
-H 'Accept: application/json'