List tasks
list_tasksList the viewer's tasks (Relay connection), optionally filtered by team, user, status, archived state, or a text query. Paginate with first + the after DateTime cursor. Parabol GraphQL: viewer.tasks. Requires TASKS_READ.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | DateTime cursor for the next (older) page (the last edge's cursor). | |
| first | No | Max tasks to return (default 20). | |
| teamIds | No | Filter to these team ids. | |
| userIds | No | Filter to tasks assigned to these user ids. | |
| archived | No | Include archived tasks (default false). | |
| filterQuery | No | Free-text filter on task content. | |
| statusFilters | No | Filter by task status (TaskStatusEnum: active, stuck, done, future). | |
| includeUnassigned | No | Include unassigned tasks (default false). |