count_notifications
Track unread notifications in Backlog by fetching counts using boolean filters for already read notifications and resources.
Instructions
Returns count of notifications
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| alreadyRead | Yes | Whether to include already read notifications | |
| resourceAlreadyRead | Yes | Whether to include notifications for already read resources | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "alreadyRead": {
      "description": "Whether to include already read notifications",
      "type": "boolean"
    },
    "resourceAlreadyRead": {
      "description": "Whether to include notifications for already read resources",
      "type": "boolean"
    }
  },
  "required": [
    "alreadyRead",
    "resourceAlreadyRead"
  ],
  "type": "object"
}