What I’m trying to do
I want to filter all tasks with the status - ["] TEXT
I have the following query:
TASK
WHERE status ="""
Things I have tried
I also tried using this format:
TASK
WHERE contains(list("""), status)
Both don’t work of course.
Is it possible to filter for a task status like this?