get-documents
Retrieve documents from a specified Meilisearch index using indexUid, with optional offset and limit parameters for precise data extraction.
Instructions
Get documents from an index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indexUid | Yes | ||
limit | No | ||
offset | No |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"indexUid": {
"type": "string"
},
"limit": {
"type": "integer"
},
"offset": {
"type": "integer"
}
},
"required": [
"indexUid"
],
"type": "object"
}