truncate_collection
Delete all records from a specified PocketBase collection to clear data while preserving the collection structure.
Instructions
Delete all records associated with the specified collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name or ID to truncate (delete all records) |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection name or ID to truncate (delete all records)",
"type": "string"
}
},
"required": [
"collection"
],
"type": "object"
}