is there a way to only return specific fields when...
# community-help
c
is there a way to only return specific fields when querying/searching? I'm getting all the vector embeddings back each query, which is unnecessary and just resulting in a slower experience for the user. I'm using instantsearch.js.
poked around the docs for the instant search adapter + the official API, but could have missed it
j
You can add the embedding field to the
exclude_fields
search parameter
c
ah awesome, i didn't realize
additionalSearchParameters
in the instantsearch adapter could accept all the normal search parameters - thanks @Jason Bosco!
👍 1