list_collections
Retrieve all collections from a PocketBase database with customizable sorting options to organize and manage your data structure.
Instructions
List all collections with optional sorting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sort | No | Sort order for collections (e.g., '-created', 'name') | -created |
Input Schema (JSON Schema)
{
"properties": {
"sort": {
"default": "-created",
"description": "Sort order for collections (e.g., '-created', 'name')",
"type": "string"
}
},
"required": [],
"type": "object"
}