affine_read_notification
Mark a notification as read in AFFiNE workspaces by specifying its ID using the GraphQL API. Simplifies notification management for streamlined workspace operations.
Instructions
Mark a notification as read.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Notification ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Notification ID",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}