curl --request GET \
--url https://api.example.com/orgs/all/graph{
"nodes": [
{
"id": "<string>",
"title": "<string>",
"num_parents": 0,
"num_children": 0,
"num_descendants": 0,
"num_ancestors": 0,
"org_id": "<string>"
}
],
"edges": [
{
"source": "<string>",
"target": "<string>",
"edge_type": "<string>",
"label": "<string>",
"connection_type": "<string>",
"parent_node_id": "<string>"
}
],
"total_nodes": 123,
"total_edges": 123
}Get graph across all organizations the user is a member of.
curl --request GET \
--url https://api.example.com/orgs/all/graph{
"nodes": [
{
"id": "<string>",
"title": "<string>",
"num_parents": 0,
"num_children": 0,
"num_descendants": 0,
"num_ancestors": 0,
"org_id": "<string>"
}
],
"edges": [
{
"source": "<string>",
"target": "<string>",
"edge_type": "<string>",
"label": "<string>",
"connection_type": "<string>",
"parent_node_id": "<string>"
}
],
"total_nodes": 123,
"total_edges": 123
}Successful Response