How do I write an "or" logical operator ON Grafana

I need to write a query that use any of the different tag I define, because the historian database supports only this type of where condition. {tag=“pressure” OR tag=“level” OR tag=“water”} Is it possible to write logical binary operators?
Is this possible?
I need this using multiple option variables.

I dont think so but Would the

Where tag in ('x','y')

Also do the trick.

1 Like