We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/tasks/cancel
This feature request is part of the new set of features introduced on Meilisearch v0.30. Extracted from meilisearch/integration-guides#221.
Related to:
Allow users to cancel a processing or an enqueued task.
processing
enqueued
POST /tasks/cancel
GET /tasks
from
limit
taskCancelation
tasks.cancel
canceled
missing_task_filters
error
null
canceledBy
details
Task
matchedTasks
canceledTasks
originalQuery
originalFilter
cancel_tasks_1
curl \ -X POST 'http://localhost:7700/tasks/cancel?uids=1,2'
The text was updated successfully, but these errors were encountered:
978cd07
Successfully merging a pull request may close this issue.
This feature request is part of the new set of features introduced on Meilisearch v0.30.
Extracted from meilisearch/integration-guides#221.
Related to:
Allow users to cancel a
processing
or anenqueued
task.POST /tasks/cancel
GET /tasks
butfrom
andlimit
are available.taskCancelation
tasks.cancel
canceled
missing_task_filters
error
field is set tonull
by default.canceledBy
field is set tonull
by default.details
fromTask
ontaskCancelation
task type:matchedTasks
canceledTasks
originalQuery
/originalFilter
.cancel_tasks_1
into this fileThis code sample should show an example of the corresponding curl command, but with swift code:
curl \ -X POST 'http://localhost:7700/tasks/cancel?uids=1,2'
The text was updated successfully, but these errors were encountered: