POST
/queryRequest
Response
path array contains the node IDs that are connected to all input nodes. When found is false, diagnostic is no_common_neighbors.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Find nodes connected to all specified input nodes.
/query{
"type": "intersect",
"nodes": [0, 1, 2]
}
| Field | Type | Required | Constraints | Description |
|---|---|---|---|---|
type | string | Yes | "intersect" | — |
nodes | array of u64 | Yes | Max 100 items | Node IDs to intersect. |
{
"success": true,
"found": true,
"path": [5, 8],
"edges": [],
"grounding": "inference",
"error": null
}
{
"success": true,
"found": false,
"path": [],
"edges": [],
"grounding": "unknown",
"error": null,
"diagnostic": "no_common_neighbors"
}
path array contains the node IDs that are connected to all input nodes. When found is false, diagnostic is no_common_neighbors.
curl -X POST http://localhost:8080/query \
-H "Content-Type: application/json" \
-d '{"type": "intersect", "nodes": [0, 1, 2]}'
Was this page helpful?