BOOLEAN
BOOLEAN: { value }
Description
The BOOLEAN operation creates a constant Boolean value. This operation allows you to embed static boolean values (true or false) directly within your logic.
Parameters
value(boolean, required):- Specifies the boolean value you want to use as a constant.
- Must be either
trueorfalse. Case-sensitive. - This value will be directly returned by the operation.
Return Type
Examples
-
Using a simple boolean constant:
BOOLEAN: true -
Using a boolean constant in a comparison:
IS_EQUAL:
left:
FIELD:
path: CA10__publiclyAccessible__c
right:
BOOLEAN: true