-
I want to do a search search with conditions. I'll post my current algolia-related code in case it's of any help. <InstantSearch indexName={"image-consult-app"} searchClient={searchClient}>
<GetHitNumber />
<Configure
hitsPerPage={20}
filters={"area:tokyo"}
/>
<CustomSearchBox
searchAsYouType={false}
defaultRefinement={searchWord}
urlWord={new URLSearchParams(props.location.search).get('query')}
/>
<CustomStateResults />
<Hits hitComponent={hitComponent} />
<Pagination />
</InstantSearch> |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 6 replies
-
Is this the documentation you're looking for? https://www.algolia.com/doc/api-reference/widgets/dynamic-facets/react/ |
Beta Was this translation helpful? Give feedback.
-
I solved myself by using Menu and the filters in Configure! |
Beta Was this translation helpful? Give feedback.
I solved myself by using Menu and the filters in Configure!