It helps to import the data of a distribution, so that the invoice process has three instances with different amount values
Reproduce:
- Perform a frequency heatmap request with a variable filter that contains two values:
{
"processDefinitionId": "...",
"filter":{
"dates": [],
"variables":[{
"name": "amount",
"type": "Double",
"operator": "=",
"values": ["10.99","30.0"]
}]
}
}
Expected:
- Two instances are returned
Observed:
- Only one instance is returned (the one that matches the first value in the filter array)