Merge deferred edges by a given task id
POST/graph/:graph_id/merge/deferred_edges
All existing deferred edges will be replaced by the definition of all deferred edges of the given task ids. We might be able to track deferred edges more specifically in the future.
Request​
Path Parameters
graph_id stringrequired
The identifier of the graph
Example: fix
- application/json
Body
array
required
The task ids to merge.
Array [
]
string
Responses​
- 200
Return a summary of actions that has been applied.
- application/json
- Schema
- Example (from schema)
Schema
processed integer
Number of processed edges
updated integer
Number of updated edges
deleted integer
Number of deleted edges
{
"processed": 0,
"updated": 0,
"deleted": 0
}
Loading...