FilterTypeInput
Defines the comparison operators that can be used in a filter.
type FilterTypeInput = {
eq?: InputMaybe<Scalars['String']['input']>;
finset?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>; /** From. Must be used with the `to` field. */
from?: InputMaybe<Scalars['String']['input']>; /** Greater than. */
gt?: InputMaybe<Scalars['String']['input']>; /** Greater than or equal to. */
gteq?: InputMaybe<Scalars['String']['input']>; /** In. The value can contain a set of comma-separated values. */
in?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>; /** Like. The specified value can contain % (percent signs) to allow matching of 0 or more characters. */
like?: InputMaybe<Scalars['String']['input']>; /** Less than. */
lt?: InputMaybe<Scalars['String']['input']>; /** Less than or equal to. */
lteq?: InputMaybe<Scalars['String']['input']>; /** More than or equal to. */
moreq?: InputMaybe<Scalars['String']['input']>; /** Not equal to. */
neq?: InputMaybe<Scalars['String']['input']>; /** Not in. The value can contain a set of comma-separated values. */
nin?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>; /** Not null. */
notnull?: InputMaybe<Scalars['String']['input']>; /** Is null. */
null?: InputMaybe<Scalars['String']['input']>; /** To. Must be used with the `from` field. */
to?: InputMaybe<Scalars['String']['input']>;
};