Skip to main content

IntComparisonExp

Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'.

input IntComparisonExp {
_eq: Int
_gt: Int
_gte: Int
_in: [Int!]
_is_null: Boolean
_lt: Int
_lte: Int
}

Fields

IntComparisonExp._eq ● Int scalar

Equal to.

IntComparisonExp._gt ● Int scalar

Greater than.

IntComparisonExp._gte ● Int scalar

Greater than or equal to.

IntComparisonExp._in ● [Int!] list scalar

In list.

IntComparisonExp._is_null ● Boolean scalar

Is or is not null

IntComparisonExp._lt ● Int scalar

Less than.

IntComparisonExp._lte ● Int scalar

Less than or equal to.

Member Of

NoteEventsBoolExp input