List knowledge graph nodes with optional filtering by kind, subkind, and status
Parameters
cursor
string
Optional
Pagination cursor
externalIdIdentifier
string
Optional
Filter nodes whose externalIds array includes an entry with this identifier. Must be combined with externalIdSystem.
externalIdSystem
string
Optional
Filter nodes whose externalIds array includes an entry with this system. Must be combined with externalIdIdentifier.
kind
string
Optional
Filter by node kind
limit
integer
Optional
Maximum results to return
status
string
Optional
Filter by lifecycle status
subkind
string
Optional
Filter by subkind slug
Output
application/jsoncursor
string
Optional
Pagination cursor for next page
hasMore
boolean
Required
Whether more results exist
nodes
array
Required
List of nodes
total
integer
Required
Total count of matching nodes
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"nodes",
"hasMore",
"total"
],
"properties": {
"nodes": {
"type": "array",
"items": {
"ref": "#graphNode",
"type": "ref"
},
"description": "List of nodes"
},
"total": {
"type": "integer",
"description": "Total count of matching nodes"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results exist"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"kind": {
"type": "string",
"description": "Filter by node kind",
"knownValues": [
"type",
"object"
]
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum results to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"status": {
"type": "string",
"description": "Filter by lifecycle status",
"knownValues": [
"proposed",
"provisional",
"established",
"deprecated"
]
},
"subkind": {
"type": "string",
"description": "Filter by subkind slug"
},
"externalIdSystem": {
"type": "string",
"description": "Filter nodes whose externalIds array includes an entry with this system. Must be combined with externalIdIdentifier."
},
"externalIdIdentifier": {
"type": "string",
"description": "Filter nodes whose externalIds array includes an entry with this identifier. Must be combined with externalIdSystem."
}
}
},
"description": "List knowledge graph nodes with optional filtering by kind, subkind, and status"
}