A reference document listing built-in convenience functions to support data transformation in expressions for objects.
Checks if the Object has no key-value pairs.
Merges two Objects into a single Object using the first as the base Object. If a key exists in both Objects, the key in the base Object takes precedence.
Function parameters
object(REQUIRED, OBJECT): The Object to merge with the base Object.
Checks if the Object has a given field. Only top-level keys are supported.
Function parameters
fieldName(REQUIRED, STRING): The field to search for.
Removes a given field from the Object
Function parameters
key(REQUIRED, STRING): The field key of the field to remove.
Removes fields with a given value from the Object.
Function parameters
value(REQUIRED, STRING): The field value of the field to remove.
Removes fields that do not match the given value from the Object.
Function parameters
value(REQUIRED, STRING): The field value of the field to keep.
Removes empty values from an Object.
Convert an object to a JSON string. Equivalent of JSON.stringify.
Transforms an Object into a URL parameter list. Only top-level keys are supported.