Camunda: Test whether JSON array contains an element

1k Views Asked by At

I would like a conditional flow to depend on whether a JSON attribute (containing a JSON array of strings) contains a specific element.

The following expression works if the element is present, but throws an exception if it is not:

   <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">
       ${ json_array.indexOf("foo")!=-1 } 
   </bpmn:conditionExpression>

The equivalent expression with lastIndexOf() also fails despite the documentation claiming that should not happen (issue 134).

Is there another way to do this?

1

There are 1 best solutions below

0
On

With Camunda 7.17.0+ you can use

    <bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">
       ${ json_array.contains("foo") } 
    </bpmn:conditionExpression>