action meilisearch_search_in_index { label: "Search in index" description: "Search in index" provider: meilisearch method: GET path: "/indexes/books/search" encoding: json input: { type: "object" properties: { attributesToCrop: { type: "string" } attributesToHighlight: { type: "string" } attributesToRetrieve: { type: "string" } cropLength: { type: "string" } cropMarker: { type: "string" } facets: { type: "string" } filter: { type: "string" } highlightPostTag: { type: "string" } highlightPreTag: { type: "string" } hitsPerPage: { type: "string" } limit: { type: "string" } matchingStrategy: { type: "string" } offset: { type: "string" } page: { type: "string" } q: { type: "string" } showMatchesPosition: { type: "string" } sort: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }