
Announcements
I encountered this error while using 'or' function in my stream. How is the 'or' function used?
error: Unable to process template language expressions for action 'condition' at row '0' and column '0': 'Template language function 'or' expects all its parameters to be Boolean. Invalid parameter types found: 'String'.'.The error is because you are probably doing something like this.
if(field = "Pending" or "Completed", true, false)
But you can't use the or to add additional values. It has to be a complete equation that evaluates to true or false. The right format would be
if(field = "Pending" or field = "Completed", true, false)