# creatorView

Query

Return a single saved Creator View by ID for the current workspace, or null if no such view exists here. Pair with `creators(presetId:)` to fetch the creators belonging to a view.

Available to agents as MCP tool `getCreatorView` — see [Read tools](/api/v2/docs/mcp/read-tools#get-creator-view).

## Arguments

| Name | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `id` | `ID!` | Yes | — | FilterPreset UUID of the creator view to fetch. |

## Returns

Returns [`CreatorView`](/api/v2/docs/types/creator-view).

## Examples

### Get a creator view by ID

Fetch a single saved Creator View by ID.

```graphql
query CreatorViewDefault($id: ID!) {
  creatorView(id: $id) {
    id
    name
    filters
    customAttributeConditions
    sort
    showReportingStats
    createdAt
    updatedAt
  }
}
```

Variables:

```json
{
  "id": "8d6ddb76-8b81-5725-a762-2d2e18432dcf"
}
```

Response — HTTP 200:

```json
{
  "data": {
    "creatorView": {
      "id": "8d6ddb76-8b81-5725-a762-2d2e18432dcf",
      "name": "Northwind VIP Creators",
      "filters": {},
      "customAttributeConditions": [],
      "sort": [],
      "showReportingStats": true,
      "createdAt": "2024-12-31T15:00:00Z",
      "updatedAt": "2024-12-31T15:00:00Z"
    }
  }
}
```
