I have multiple conditional filters that I would like to apply independently. From what I’ve read so far it appears to be only possible to group these together with a single unless statement.
What I’d like is something similar to the following, where I have multiple conditions that are unrelated.
explore: my_custom_explore {
conditionally_filter: {
filters: [timestamp_time: "last 24 hours"]
unless: [timestamp_date, timestamp_time]
}
conditionally_filter: {
filters: [product_id: "1234"]
unless: [product_name]
}
}
Is there a recommended way to have this kind of behavior?