You are viewing the documentation for Blueriq 17. Documentation for other versions is available in our documentation directory.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

AND

This function returns TRUE if all its arguments evaluate to TRUE; it returns FALSE if one or more arguments evaluate to FALSE.

Syntax

argument1 AND argument2 [AND ...]
  • argument1 - The first boolean condition that you want to evaluate.
  • argument2 - The first boolean condition that you want to evaluate.
  • [AND …] - Additional boolean conditions that you want to evaluate. (optional)

Return type

  • boolean

Examples

ExpressionResultType
TRUE AND TRUETRUEBoolean
TRUE AND FALSE

FALSE

Boolean
TRUE AND ? (= UNKNOWN)UNKNOWNBoolean
FALSE AND ? FALSEBoolean

OR

This function returns TRUE if at least one of its arguments evaluates to TRUE; it returns FALSE if none of the arguments evaluate to TRUE.

Syntax

argument1 OR argument2 [OR ...]

argument1 - The first boolean condition that you want to evaluate. argument2 - The first boolean condition that you want to evaluate. [OR …] - Additional boolean conditions that you want to evaluate.

Return type

  • boolean

Examples

ExpressionResultType
TRUE OR TRUE

TRUE

Boolean
TRUE OR FALSETRUEBoolean
FALSE OR FALSEFALSEBoolean

TRUE OR ? (= UNKNOWN)

TRUEBoolean
FALSE OR ? (= UNKNOWN)UNKNOWNBoolean

TRUE

This is the boolean value TRUE.

FALSE

This is the boolean value FALSE.

NOT

This operator reverses the value of its boolean argument.

Syntax

NOT argument
  • argument - The boolean condition of which you want to reverse its value.

Return type

  • boolean

Examples

ExpressionResultType
NOT (TRUE)FALSEBoolean
NOT (TRUE AND FALSE)TRUEBoolean
NOT ( ? (= UNKNOWN) )UNKNOWNBoolean
NOT (NOT (TRUE))TRUEBoolean

Using brackets is not required, but advised to clearly indicate which boolean condition needs to be reversed.

UNKNOWN

You can use the '?' (question mark), representing UNKNOWN, to check if an expression or an attribute has a value.

Example

Suppose a model with an entity Person and attributes Person.name and Person.age. In runtime, a user fills out a form and enters his name, but forgets to fill out his age.

As a result:

ExpressionResultTypeReason
Person.name = ?FALSEBooleanThis attribute is filled out
Person.age = ?TRUEBooleanThis attribute is not filled out, and therefore UNKNOWN


  • No labels