Hey guys, I’m using a filter for a range like this:
let filter = cf.Filter("value")
.label("value")
.operation("GE,LT")
.value([17, 34]);
But, I need to exclude that range, is there a way to use something like a NOT IN
operation in the filter for a range?