count_conditions
Synopsis
@count_conditions(Expression_1 [, Expression_2 ...]) -> Integer
Description
Counts how many of the provided conditions are matching on a given object.
info
Available in Contextal Platform 1.3 and later.
Parameters
One or more logical expressions (conditions) required for the objects to match.
Return value
Integer: The number of conditions that were evaluated positively. The return value will never exceed the total number of provided conditions.
Examples
@count_conditions(
@match_object_meta($natural_language_profanity_count > 0),
@match_object_meta($natural_language_sentiment.compound < 0),
@match_pattern("pay")
) >= 2
- This matches all objects, which satisfy at least two of the provided conditions.