Hi,
Can you clarify how many “hits” I’m being charged for on the below JSON response?
I’m running the following JS and I only want to retrieve 5 hits but nbHits is saying 60?
index
.search(state.searchItem, {
hitsPerPage: 5,
length: 5,
offset: 0,
facets: ["*"],
maxFacetHits: 5,
userToken: userStore.cusCode,
})
?
Thanks.