If I want to add stopwords, but I am using the TS ...
# community-help
s
If I want to add stopwords, but I am using the TS Instant Search Adapter, would I do this?
Copy code
const typesenseInstantsearchAdapter =
				new TypesenseInstantSearchAdapter({
					server: TYPESENSE_SERVER_CONFIG,
					additionalSearchParameters: {
						query_by: queryBy,
						exclude_fields:
							'embedding,Transcript,Summary,Topic,Guest,Channel,Author,Category,Tag,Access,Episode,Date', //We pull these from the WP DB via PHP, thus exclude from response.
						prefix: false,
                        stopwords: 'stopword_set1',
					},
				});
Would that be correct?