Hello,
I write a query like "WHERE Type IN (1,2,3)", that equal to "WHERE Type=1 OR Type=2 OR Type=3".
The requirements (1,2,3) is dynamic. I tried to use array label to store the type requirements and add to query with script.
Since 18.2 beta support writing script in query string, I imagine the query could be something like "WHERE Type IN ({token.reqTypes})" but it's wrong.
So is there other solution to construct dynamic query?