List personal graph nodes for the authenticated user
Parameters
Output
Encoding
application/jsonnodes
array
Required
Personal graph 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"
],
"properties": {
"nodes": {
"type": "array",
"items": {
"ref": "#personalNodeView",
"type": "ref"
},
"description": "Personal graph nodes"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum results to return"
},
"subkind": {
"type": "string",
"description": "Filter by subkind slug"
}
}
},
"description": "List personal graph nodes for the authenticated user"
}