TaskSuiteSortItems
toloka.client.search_requests.TaskSuiteSortItems
TaskSuiteSortItems(self, items=None)
Parameters for sorting task suite search results
You can specify multiple parameters. To change the sorting direction (sort in descending order), add a hyphen before the parameter. For example, sort=-id.
Parameters Description
Parameters | Type | Description |
---|---|---|
items |
Optional[List[SortItem]] | Fields by which to sort. Possible values:
|
Examples:
How to specify and use SortItems.
sort = toloka.client.search_requests.TaskSuiteSortItems(['-created', 'id'])
result = toloka_client.find_task_suites(pool_id=my_pretty_pool_id, sort=sort, limit=10)