$arrayFind
$arrayFind
will check for the first element in the array which matches the query and return it.
Usage
Parameters
Field | Type | Description | Required |
---|---|---|---|
name | string | Array name. | true |
query | string | The element we will be queering for every element inside the array. | true |
queryType? | string | The comparison operator. | false |
separator? | string | Separator. | false |
Comparison Operators
==
— Every item that matches the query.!=
— Every item that doesn’t match the query.>
— All items on the “left” of the found item, excluding itself.<
— All items on the “right” of the found item, excluding itself.>=
— All items on the “left” of the found item, including itself.<=
— All items on the “right” of the found item, including itself.