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
Copy file name to clipboardExpand all lines: packages/client_composition/lib/src/model/main_injection_query_parameters.dart
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -286,7 +286,7 @@ final class MainInjectionQueryParameters {
286
286
@JsonKey(name:r'facetingAfterDistinct')
287
287
finalbool? facetingAfterDistinct;
288
288
289
-
/// Facets for which to retrieve facet values that match the search criteria and the number of matching facet values To retrieve all facets, use the wildcard character `*`. For more information, see [facets](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#contextual-facet-values-and-counts).
289
+
/// Facets for which to retrieve facet values that match the search criteria and the number of matching facet values To retrieve all facets, use the wildcard character `*`. To retrieve disjunctive facets lists, annotate any facets with the `disjunctive` modifier. For more information, see [facets](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#contextual-facet-values-and-counts) and [disjunctive faceting for Smart Groups](https://www.algolia.com/doc/guides/managing-results/compositions/search-based-groups#facets-including-disjunctive-faceting).
Copy file name to clipboardExpand all lines: packages/client_composition/lib/src/model/params.dart
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,8 @@ final class Params {
16
16
this.page,
17
17
this.getRankingInfo,
18
18
this.relevancyStrictness,
19
-
this.facets,
20
19
this.facetFilters,
20
+
this.facets,
21
21
this.optionalFilters,
22
22
this.numericFilters,
23
23
this.hitsPerPage,
@@ -62,17 +62,17 @@ final class Params {
62
62
@JsonKey(name:r'relevancyStrictness')
63
63
finalint? relevancyStrictness;
64
64
65
-
/// Facets for which to retrieve facet values that match the search criteria and the number of matching facet values To retrieve all facets, use the wildcard character `*`. For more information, see [facets](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#contextual-facet-values-and-counts).
66
-
@JsonKey(name:r'facets')
67
-
finalList<String>? facets;
68
-
69
65
/// One of types:
70
66
/// - [List<List<FacetFilters>>]
71
67
/// - [String]
72
68
/// - [List<String>]
73
69
@JsonKey(name:r'facetFilters')
74
70
finaldynamic facetFilters;
75
71
72
+
/// Facets for which to retrieve facet values that match the search criteria and the number of matching facet values To retrieve all facets, use the wildcard character `*`. To retrieve disjunctive facets lists, annotate any facets with the `disjunctive` modifier. For more information, see [facets](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#contextual-facet-values-and-counts) and [disjunctive faceting for Smart Groups](https://www.algolia.com/doc/guides/managing-results/compositions/search-based-groups#facets-including-disjunctive-faceting).
0 commit comments