query_items
Fetch board items with cell values, filterable by search, status, priority, and archived status. Supports pagination and sorting.
Instructions
List items (rows) of a board, including their cell values. Returns all items unless limit/page are given (the API defaults to 50 per page when unpaged, so the tool pages through and concatenates). Narrow the result with search, status, priority and sort instead of fetching everything. This is the admin view; the REST endpoints of a published app take a fuller grammar — filter[column][gte], relation filters, per-field search — see get_app_spec.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 1-based page, only with limit | |
| sort | No | Sort by title, createdAt, updatedAt or status; prefix with "-" for descending, e.g. "-createdAt". Anything else keeps the board order | |
| limit | No | Page size; omit to fetch all items | |
| search | No | Free text; matches the row title and its text cells | |
| status | No | Only rows with one of these statuses, comma separated: "todo,in_progress" (task boards only) | |
| boardId | Yes | Board id (from list_boards / create_board) | |
| archived | No | Which rows to include. Default active | |
| priority | No | Only rows with one of these priorities, comma separated (task boards only) | |
| projectId | Yes | Project id (from list_projects / create_project) |