jsonb_comparison_exp
No description
input jsonb_comparison_exp {
_cast: jsonb_cast_exp
_contained_in: jsonb
_contains: jsonb
_eq: jsonb
_gt: jsonb
_gte: jsonb
_has_key: String
_has_keys_all: [String!]
_has_keys_any: [String!]
_in: [jsonb!]
_is_null: Boolean
_lt: jsonb
_lte: jsonb
_neq: jsonb
_nin: [jsonb!]
}
Fields
jsonb_comparison_exp._cast ● jsonb_cast_exp input
jsonb_comparison_exp._contained_in ● jsonb scalar
Returns true if the event value is equal to one of the given values in the collection; false otherwise.
jsonb_comparison_exp._contains ● jsonb scalar
jsonb_comparison_exp._eq ● jsonb scalar
Returns true if the event value is equal to the given value; false otherwise.
jsonb_comparison_exp._gt ● jsonb scalar
Returns true if the event value is greater than the given value; false otherwise.
jsonb_comparison_exp._gte ● jsonb scalar
Returns true if the event value is greater than the given value; false otherwise.
jsonb_comparison_exp._has_key ● String scalar
jsonb_comparison_exp._has_keys_all ● [String!] list scalar
jsonb_comparison_exp._has_keys_any ● [String!] list scalar
jsonb_comparison_exp._in ● [jsonb!] list scalar
Returns true if the event value is equal to one of the given values in the collection; false otherwise.
jsonb_comparison_exp._is_null ● Boolean scalar
Checks whether the event value is or is not NULL.
jsonb_comparison_exp._lt ● jsonb scalar
Returns true if the event value is less than the given value; false otherwise.
jsonb_comparison_exp._lte ● jsonb scalar
Returns true if the event value is less than the given value; false otherwise.
jsonb_comparison_exp._neq ● jsonb scalar
Returns true if the event value is not equal to the given value; false otherwise.
jsonb_comparison_exp._nin ● [jsonb!] list scalar
Returns true if the event value is not equal to any of the given values in the collection; false otherwise.
Member Of
Event_bool_exp input