affine_list_notifications
Fetch user notifications from AFFiNE workspaces, allowing users to specify the number of notifications and filter for unread ones only.
Instructions
Get user notifications.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
first | No | Number of notifications to fetch | |
unreadOnly | No | Show only unread notifications |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"first": {
"description": "Number of notifications to fetch",
"type": "number"
},
"unreadOnly": {
"description": "Show only unread notifications",
"type": "boolean"
}
},
"type": "object"
}