Jetstack's number-family filters support:
nullnot_nullequalnot_equalless_thangreater_thanbetweeninnot_inin_listnot_in_listin_subquerynot_in_subqueryequalnot_equalless_thangreater_thanbetweenUse these when the value is compared directly against numeric thresholds or ranges.
innot_inUse these when the candidate set is small and local to the query.
in_listnot_in_listUse these when the candidate set should be managed independently through filter lists.
in_subquerynot_in_subqueryUse these when the candidate set is dynamic and should be produced by another query. These operators are especially useful in governance and complex reporting scenarios.
Use this family for:
between for true range semantics instead of two unrelated conditions when possible