Graph
Get graph skeleton
Section titled “Get graph skeleton”GET /api/v1/graph/skeletonReturns the full graph structure for visualization (used by the dashboard graph view).
Response
Section titled “Response”{ "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 }}Limits
Section titled “Limits”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.