revoke_doc
Remove public access to a specific document in an AFFiNE workspace by specifying the docId using the GraphQL API.
Instructions
Revoke a doc's public access.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
docId | Yes | ||
workspaceId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"docId": {
"type": "string"
},
"workspaceId": {
"type": "string"
}
},
"required": [
"docId"
],
"type": "object"
}