Anthony Bachour
05/01/2024, 8:25 PMJason Bosco
05/01/2024, 8:29 PMJason Bosco
05/01/2024, 8:29 PMAnthony Bachour
05/01/2024, 8:32 PMJason Bosco
05/01/2024, 8:33 PMAnthony Bachour
05/01/2024, 8:42 PMAnthony Bachour
05/03/2024, 2:24 PMAnthony Bachour
05/03/2024, 2:24 PMif (filtersHash[field]["<="] != null && filtersHash[field][">="] != null && (filtersHash[field]["<="] > filtersHash[field][">="])) {
adaptedFilters.push("".concat(field, ":=[").concat(filtersHash[field][">="], "..").concat(filtersHash[field]["<="], "]"));
} else if (filtersHash[field]["<="] != null && filtersHash[field][">="] != null) {
adaptedFilters.push("".concat(field, ":!=[").concat(filtersHash[field]["<="], "..").concat(filtersHash[field][">="], "]"));
Anthony Bachour
05/03/2024, 2:25 PMJason Bosco
05/03/2024, 4:27 PM:!=
when that flag is enabled. May be the flag is called something like negateNumericRanges
for egAnthony Bachour
05/03/2024, 4:30 PMJason Bosco
05/03/2024, 4:40 PMAnthony Bachour
05/03/2024, 5:22 PMAnthony Bachour
05/07/2024, 4:03 PM