affine_update_comment
Modify comment content within AFFiNE workspaces using the GraphQL API. Input the comment ID and updated content to manage and refine collaborative discussions effectively.
Instructions
Update a comment content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | ||
id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {},
"id": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}