Skip to content

Latest commit

 

History

History
39 lines (21 loc) · 985 Bytes

QueryVariable.md

File metadata and controls

39 lines (21 loc) · 985 Bytes

QueryVariable

Properties

Name Type Description Notes
name string [optional] [default to null]
operation string [optional] [default to null]
type string [optional] [default to null]
value any [optional] [default to null]
variableOperation string [optional] [default to null]

Enum: QueryVariable.VariableOperationEnum

  • EQUALS (value: 'EQUALS')

  • NOTEQUALS (value: 'NOT_EQUALS')

  • EQUALSIGNORECASE (value: 'EQUALS_IGNORE_CASE')

  • NOTEQUALSIGNORECASE (value: 'NOT_EQUALS_IGNORE_CASE')

  • LIKE (value: 'LIKE')

  • LIKEIGNORECASE (value: 'LIKE_IGNORE_CASE')

  • GREATERTHAN (value: 'GREATER_THAN')

  • GREATERTHANOREQUALS (value: 'GREATER_THAN_OR_EQUALS')

  • LESSTHAN (value: 'LESS_THAN')

  • LESSTHANOREQUALS (value: 'LESS_THAN_OR_EQUALS')