FilterEqualTypeInput
Defines a filter that matches the input exactly.
type FilterEqualTypeInput = {
eq?: InputMaybe<Scalars['String']['input']>; /** Use this attribute to filter on an array of values. For example, to filter on category IDs 4, 5, and 6, specify a value of `["4", "5", "6"]`. */
in?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
};