Skip to content

Graph

GET /api/v1/graph/skeleton

Returns the full graph structure for visualization (used by the dashboard graph view).

{
"nodes": [
{
"id": "abc123",
"title": "Node title",
"para_category": "projects",
"connection_count": 5
}
],
"edges": [
{
"source": "abc123",
"target": "def456"
}
],
"meta": {
"node_count": 156,
"edge_count": 450,
"truncated": false
}
}

The response is truncated at:

  • 5,000 nodes maximum
  • 50,000 edges maximum

If truncated, meta.truncated is true. The most-connected nodes are kept.