list_all_tasks
Retrieve all active tasks from every list in one request, avoiding multiple list-specific calls.
Instructions
Fetch every active task across every list in a single round-trip (uses Graph $batch internally). Use this for the question "what are all my tasks?" instead of N×list_tasks calls. Optional filter is an OData filter applied per list (e.g. "importance eq 'high'"). By default status ne 'completed' is appended unless include_completed is true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | ||
| top_per_list | No | ||
| include_completed | No | ||
| verbose | No | If true: returns full JSON. Otherwise: compact text format (default, saves tokens). |