Class: Vellum::LogicalOperator
- Inherits:
-
Object
- Object
- Vellum::LogicalOperator
- Defined in:
- lib/vellum_ai/types/logical_operator.rb
Overview
-
‘length` - LENGTH
Constant Summary collapse
- EQUALS =
"="
- DOES_NOT_EQUAL =
"!="
- LESS_THAN =
"<"
- GREATER_THAN =
">"
- LESS_THAN_OR_EQUAL_TO =
"<="
- GREATER_THAN_OR_EQUAL_TO =
">="
- CONTAINS =
"contains"
- BEGINS_WITH =
"beginsWith"
- ENDS_WITH =
"endsWith"
- DOES_NOT_CONTAIN =
"doesNotContain"
- DOES_NOT_BEGIN_WITH =
"doesNotBeginWith"
- DOES_NOT_END_WITH =
"doesNotEndWith"
- NULL =
"null"
- NOT_NULL =
"notNull"
- IN =
"in"
- NOT_IN =
"notIn"
- BETWEEN =
"between"
- NOT_BETWEEN =
"notBetween"
- BLANK =
"blank"
- NOT_BLANK =
"notBlank"
- COALESCE =
"coalesce"
- ACCESS_FIELD =
"accessField"
- PARSE_JSON =
"parseJson"
- AND =
"and"
- OR =
"or"
- IS_ERROR =
"isError"
- LENGTH =
"length"