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
This feature request is part of the new set of features introduced on Meilisearch v0.30. Extracted from meilisearch/integration-guides#221.
Related to:
This issue aims to reduce the users' friction with disk size management by allowing them to delete the old processed tasks.
DELETE /tasks
taskDeletion
deletedTasks
details
Task
tasks.delete
GET /tasks
from
limit
uids
/tasks?uids=1,2,3,4
invalid_task_uids_filter
canceledBy
/tasks?canceledBy=99,100
invalid_task_canceled_by_filter
beforeEnqueuedAt
afterEnqueuedAt
/tasks?afterEnqueuedAt=2022-01-20&beforeEnqueuedAt=2022-01-23
beforeStartedAt
afterStartedAt
/tasks?afterStartedAt=2022-01-20&beforeStartedAt=2022-01-23
beforeFinishedAt
afterFinishedAt
/tasks?afterFinishedAt=2022-01-20&beforeFinishedAt=2022-01-23
delete_tasks_1
curl \ -X DELETE 'http://localhost:7700/tasks?uids=1,2'
TasksQuery.swift
DeleteTasksQuery
Queryable
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:
This issue aims to reduce the users' friction with disk size management by allowing them to delete the old processed tasks.
DELETE /tasks
taskDeletion
deletedTasks
in fielddetails
fromTask
type when performingtaskDeletion
tasks.delete
GET /tasks
butfrom
andlimit
are available.uids
filter. e.g/tasks?uids=1,2,3,4
(invalid_task_uids_filter
canceledBy
filter. e.g/tasks?canceledBy=99,100
invalid_task_canceled_by_filter
beforeEnqueuedAt
andafterEnqueuedAt
. e.g/tasks?afterEnqueuedAt=2022-01-20&beforeEnqueuedAt=2022-01-23
beforeStartedAt
andafterStartedAt
. e.g/tasks?afterStartedAt=2022-01-20&beforeStartedAt=2022-01-23
beforeFinishedAt
andafterFinishedAt
. e.g/tasks?afterFinishedAt=2022-01-20&beforeFinishedAt=2022-01-23
delete_tasks_1
into this fileThis code sample should show an example of the corresponding curl command, but with swift code:
curl \ -X DELETE 'http://localhost:7700/tasks?uids=1,2'
General recommendations to implement this issue:
TasksQuery.swift
as an example.DeleteTasksQuery
class implementsQueryable
protocol.The text was updated successfully, but these errors were encountered: