For the complete documentation index, see llms.txt. This page is also available as Markdown.

AbacComparisonExpressionComparisonOperator

The different comparison operators.

enum AbacComparisonExpressionComparisonOperator {
  ContainsTag
  HasTag
  InheritsTag
  PropertyContains
  PropertyEndsWith
  PropertyEquals
  PropertyIn
  PropertyStartsWith
}

Values

ContainsTag

To check if the object, or any of its descendants, has a certain tag.

HasTag

To check if the object has the tag directly.

InheritsTag

To check if the object, or any of its ancestors, has a certain tag.

PropertyContains

To check if the value contains a certain string.

PropertyEndsWith

To check if the value ends with a certain string.

PropertyEquals

To compare the operands with the equals (=) operator.

PropertyIn

To check if the given value is in a list of values.

PropertyStartsWith

To check if the value start with a certain string.

Member Of

AbacComparisonExpressionComparison object ● AbacComparisonExpressionComparisonInput input

Last updated

Was this helpful?