You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 31, 2022. It is now read-only.
* Search (asynchronously) for some text in a facet values.
186
+
*
187
+
* @param facetName The name of the facet to search. It must have been declared in the index's `attributesForFaceting` setting with the `searchable()` modifier.
188
+
* @param text The text to search for in the facet's values.
189
+
* @param handler A Completion handler that will be notified of the request's outcome.
* Search (asynchronously) for some text in a facet values.
186
198
*
187
199
* @param facetName The name of the facet to search. It must have been declared in the index's `attributesForFaceting` setting with the `searchable()` modifier.
188
200
* @param text The text to search for in the facet's values.
@@ -202,6 +214,19 @@ public Request searchForFacetValues(@NonNull String facetName, @NonNull String t
202
214
* @param handler A Completion handler that will be notified of the request's outcome.
* Search (asynchronously) for some text in a facet values, optionally restricting the returned values to those contained in objects matching other (regular) search criteria.
223
+
*
224
+
* @param facetName The name of the facet to search. It must have been declared in the index's `attributesForFaceting` setting with the `searchable()` modifier.
225
+
* @param facetText The text to search for in the facet's values.
226
+
* @param query An optional query to take extra search parameters into account. There parameters apply to index objects like in a regular search query. Only facet values contained in the matched objects will be returned
227
+
* @param handler A Completion handler that will be notified of the request's outcome.
0 commit comments