Hi,
In my project (Spring-Boot: (v2.1.2.RELEASE), Camunda BPM: (v7.10.0), Camunda BPM Spring Boot Starter: (v3.2.0)
It seems that processVariableValueLike as same behavior as processVariableValueEquals.
code : taskQuery.processVariableValueLike(CamundaVariable.MODEL_LABEL_EN, requestFilter.modelID);
In that exemple case CamundaVariable.MODEL_LABEL_EN = “Petrol-powered cement mixer”
if requestFilter.modelID = “Petrol-powered cement mixer” i have the task i want cause it match perfectly in the string
However i’m suppose that i can just give “Petrol” or “cement mixer” but if i do so i get anything.
Does i miss something ? Or the two method have the same behavior ?
Thanks