smallint_comparison_exp
No description
input smallint_comparison_exp {
_eq: smallint
_gt: smallint
_gte: smallint
_in: [smallint!]
_is_null: Boolean
_lt: smallint
_lte: smallint
_neq: smallint
_nin: [smallint!]
}
Fields
smallint_comparison_exp._eq ● smallint scalar
Returns true if the event value is equal to the given value; false otherwise.
smallint_comparison_exp._gt ● smallint scalar
Returns true if the event value is greater than the given value; false otherwise.
smallint_comparison_exp._gte ● smallint scalar
Returns true if the event value is greater than the given value; false otherwise.
smallint_comparison_exp._in ● [smallint!] list scalar
Returns true if the event value is equal to one of the given values in the collection; false otherwise.
smallint_comparison_exp._is_null ● Boolean scalar
Checks whether the event value is or is not NULL.
smallint_comparison_exp._lt ● smallint scalar
Returns true if the event value is less than the given value; false otherwise.
smallint_comparison_exp._lte ● smallint scalar
Returns true if the event value is less than the given value; false otherwise.
smallint_comparison_exp._neq ● smallint scalar
Returns true if the event value is not equal to the given value; false otherwise.
smallint_comparison_exp._nin ● [smallint!] list scalar
Returns true if the event value is not equal to any of the given values in the collection; false otherwise.