File tree Expand file tree Collapse file tree
algoliasearch-common/src/main/java/com/algolia/search/objects Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ public abstract class QueryBase<T extends QueryBase<?>> implements Serializable
100100 protected List <String > disableExactOnAttributes ;
101101 protected String exactOnSingleWordQuery ;
102102 protected List <String > alternativesAsExact ;
103+ protected Boolean sumOrFiltersScores ;
103104
104105 /* ranking */
105106 // Nothing in Query
@@ -934,6 +935,15 @@ public T setSortFacetValuesBy(String sortFacetValuesBy) {
934935 return (T ) this ;
935936 }
936937
938+ public Boolean getSumOrFiltersScores () {
939+ return sumOrFiltersScores ;
940+ }
941+
942+ public T setSumOrFiltersScores (Boolean sumOrFiltersScores ) {
943+ this .sumOrFiltersScores = sumOrFiltersScores ;
944+ return (T ) this ;
945+ }
946+
937947 @ JsonAnyGetter
938948 public Map <String , Object > getCustomParameters () {
939949 return customParameters ;
You can’t perform that action at this time.
0 commit comments