reset-pagination
Restore pagination settings to default for a specified index in Meilisearch, ensuring consistent search result display and streamlined management of search queries.
Instructions
Reset the pagination setting to its default value
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indexUid | Yes | Unique identifier of the index |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"indexUid": {
"description": "Unique identifier of the index",
"type": "string"
}
},
"required": [
"indexUid"
],
"type": "object"
}