affine_delete_comment
Remove a specific comment from AFFiNE workspaces by providing its unique ID, ensuring clean and organized collaboration using the GraphQL API.
Instructions
Delete a comment by id.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}