cancel-tasks
Cancel tasks in Meilisearch by applying filters such as uids, indexUids, types, or statuses to manage task execution efficiently.
Instructions
Cancel tasks based on filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indexUids | No | ||
statuses | No | ||
types | No | ||
uids | No |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"indexUids": {
"type": "string"
},
"statuses": {
"type": "string"
},
"types": {
"type": "string"
},
"uids": {
"type": "string"
}
},
"type": "object"
}