Skip to main content



Collection Templates

Collection templates perform lookup and aggregate functions over a collection. They can filter out specific collection members to operate over.

Template nameTemplate formatReturn type
lookuplookup <expression> from<collection> where <filter>otherwise use <default>type of evaluatedexpression
member numbermember number <index> in<collection>entity reference
the average ofthe average of <numericexpression> in <collection>integer or decimal
the first matching memberfromthe first matching memberfrom <collection> where<filter expression>integer or decimal
the first member inthe first member in<collection>entity reference
the last member inthe last member in<collection>entity reference
the number ofthe number of <collection>integer
any members exist inany members exist in<collection> filtered by<filter expression>Boolean
no members exist inno members exist in<collection> filtered by<filter expression>Boolean
the total ofthe total of <numericexpression> in <collection>integer or decimal
the minimum ofthe minimum of <numericexpression> in <collection>integer or decimal
the maximum ofthe maximum of <numericexpression> in <collection>integer or decimal
get first valuethe value of <field> on thefirst member in <collection>otherwise use <default>field value
get first valuethe value of <field> on thelast member in <collection>otherwise use <default>field value
the value of a member atan indexthe value of <field> onmember number <integer>from <collection> otherwiseuse <default>field value