# pub.chive.graph.listPersonalNodes

> Published by [chive.pub](https://lexicon.garden/identity/did:plc:7natp5xae72bddaqlkef2t4e)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.graph.listPersonalNodes)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.graph.listPersonalNodes/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.graph.listPersonalNodes/examples)

## Definitions

### `pub.chive.graph.listPersonalNodes`

**Type**: `query`

List personal graph nodes for the authenticated user

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | Maximum results to return |
| `subkind` | `string` | No | Filter by subkind slug |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `nodes` | `array` | Yes | Personal graph nodes |

### `pub.chive.graph.listPersonalNodes#personalNodeView`

**Type**: `object`

View of a personal graph node

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes | Node identifier |
| `uri` | `string` (at-uri) | Yes | AT-URI of the node |
| `kind` | `string` | Yes | Node kind |
| `label` | `string` | Yes | Primary display label |
| `status` | `string` | Yes | Lifecycle status |
| `subkind` | `string` | No | Subkind slug |
| `metadata` | `ref` → `pub.chive.graph.node#nodeMetadata` | No | Subkind-specific metadata |
| `createdAt` | `string` (datetime) | Yes | Creation timestamp |
| `description` | `string` | No | Node description |
| `alternateLabels` | `array` | No | Alternate labels or synonyms |

## Raw Schema

```json
{
  "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
}
```
