recent_docs
Retrieve a list of recently updated documents in a specified workspace using the GraphQL API. Manage document operations efficiently with input parameters like workspace ID and pagination options.
Instructions
List recently updated docs in a workspace.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | ||
first | No | ||
offset | No | ||
workspaceId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"after": {
"type": "string"
},
"first": {
"type": "number"
},
"offset": {
"type": "number"
},
"workspaceId": {
"type": "string"
}
},
"type": "object"
}