Client > Get All? - Is it possible to get all f...
# community-help
c
Client > Get All? - Is it possible to get all found items from a client search vs. limited to x items per_page? ie. client.collections("companies").documents().search(searchParameters);
k
You can paginate using
page=X
parameter to access further pages, but that will have a performance impact. Typesense is a search so it's optimized for fetching top relevant results fast. The export end-point supports exporting documents based on a filter condition. But it does not support a
q
parameter.
👍 1