store_search
Search a collection for records containing every query term as a substring, returning paginated results with a cursor for next pages.
Instructions
Full-text search one SOIL collection: the query is split on whitespace
and EVERY token must appear somewhere in a record's JSON (AND logic,
substring match). Paginated: returns {items, next_cursor} — pass the
returned next_cursor as cursor to fetch the next page. An empty
query returns {items: [], next_cursor: null}. Read-only; confined to
your store_scope.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| app_id | Yes | ||
| cursor | No | ||
| collection | Yes |