I using influxdb to create a dashboard and i have a variable define by
import "influxdata/influxdb/schema"
schema.tagValues(bucket: v.bucket, tag: "my-tag")
I can use the variable in my dashboard with this example query.
from(bucket: v.bucket)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r["_measurement"] == "aMeasure")
|> filter(fn: (r) => r["my-tag"] == v.myTag)
|> cumulativeSum()
|> yield()
But i want to have the possibility to not select a value and have an unfiltered dashboard but i don't find how to do that with influxdb dashboard and query