For example:
SELECT * FROM MyObject WHERE findMin ([first, second, third, fourth]) > 1
List).The expression list can be used wherever a standard expression is used. When the expression list is evaluated JoSQL will evaluate each expression in the list and return a list of the values.
Nested Lists
It is also possible to create nested lists, for example:SELECT * FROM MyObject WHERE findMin ([first, [second, second2, second3], third, [fourth, fourth2]]) > 1
Use in Functions
To use lists in functions just use a
List as the argument type:public double findMin (List nums)
If you wish to have more control over the execution of the expressions however you should use a ExpressionList or Expression as the argument type:
public double findMin (Expression nums)


