count_queue_items
Get the total count of queue items matching a filter without fetching them, to estimate volume and plan pagination or batch sizes.
Instructions
Return the total number of queue items matching the given criteria — without fetching the items.
Call this before get_queue_items to check volume and decide on batch_size / pagination strategy. Also useful for health checks (e.g. how many New items are waiting?).
Args: folder_name: The display name of the folder. queue_name: Queue name to scope the count. If omitted, counts across all queues in the folder. filter_query: Optional OData filter string (e.g. "Status eq 'Failed'").
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| queue_name | No | ||
| folder_name | Yes | ||
| filter_query | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |