I was also confused because I didn't see it in the examples as a parameter so I didn't think to add it in. I was looking a lot at the Ecommerce Store example and didn't see the page parameter in this code: const typesenseInstantsearchAdapter = new TypesenseInstantSearchAdapter({
server: TYPESENSE_SERVER_CONFIG,
additionalSearchParameters: {
// The following parameters are directly passed to Typesense's search API endpoint.
// So you can pass any parameters supported by the search endpoint below.
// queryBy is required.
query_by: 'name,categories,description',
query_by_weights: '4,2,1',
num_typos: 1,
typo_tokens_threshold: 1,
exclude_fields: 'vectors',
// By default, Typesense approximates facet counts for performance.
// Turning on exhaustive search will get you accurate facet counts, at the cost of a slight performance hit.
exhaustive_search: true,
// group_by: "categories",
// group_limit: 1
// pinned_hits: "23:2"
},
});