Open
Description
This component support JsonLogic as input/output format, but I'm unable to find how manage json array (In particular I don't see how use all/some/none operations). Is this a documentation lack or this part of JsonLogic rules is not supported?
Here an example from JsonLogic docs.
Data
{
"integers": [1,2,3,4,5]
}
JsonLogic Rule
{
"some" : [
{"var" : "integers"},
{">" : [{"var" : ""}, 10]}
]
}
Expected result
false
Operato