# creatorViews

Query

List saved Creator Views for the current workspace, ordered by most-recently-updated first. Pair with `creators(presetId:)` to fetch the creators belonging to a view. Returns at most 1000 rows; this field is not paginated.

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

## Arguments

| Name | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `filter` | [`CreatorViewFilterInput`](/api/v2/docs/types/creator-view-filter-input) | No | `{}` | Optional filter criteria. When omitted or empty, returns the current workspace's creator views. |

## Returns

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

## Examples

### List creator views

Return the workspace's saved Creator Views, newest-updated first.

```graphql
query CreatorViewsDefault {
  creatorViews {
    id
    name
    sort
    showReportingStats
    createdAt
    updatedAt
  }
}
```

Response — HTTP 200:

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