affine_resolve_comment
Mark comments as resolved or unresolved in AFFiNE workspaces to streamline feedback management and improve collaboration during document editing.
Instructions
Resolve or unresolve a comment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
resolved | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"resolved": {
"type": "boolean"
}
},
"required": [
"id",
"resolved"
],
"type": "object"
}