{
"id": "pub.chive.graph.listPersonalNodes",
"defs": {
"main": {
"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"
},
"personalNodeView": {
"type": "object",
"required": [
"uri",
"id",
"kind",
"label",
"status",
"createdAt"
],
"properties": {
"id": {
"type": "string",
"description": "Node identifier"
},
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the node"
},
"kind": {
"type": "string",
"description": "Node kind"
},
"label": {
"type": "string",
"description": "Primary display label"
},
"status": {
"type": "string",
"description": "Lifecycle status",
"knownValues": [
"proposed",
"provisional",
"established",
"deprecated"
]
},
"subkind": {
"type": "string",
"description": "Subkind slug"
},
"metadata": {
"ref": "pub.chive.graph.node#nodeMetadata",
"type": "ref",
"description": "Subkind-specific metadata"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Creation timestamp"
},
"description": {
"type": "string",
"description": "Node description"
},
"alternateLabels": {
"type": "array",
"items": {
"type": "string"
},
"description": "Alternate labels or synonyms"
}
},
"description": "View of a personal graph node"
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1,
"revision": 1
}