FilterRangeTypeInput
Defines a filter that matches a range of values, such as prices or dates.
type FilterRangeTypeInput = {
from?: InputMaybe<Scalars['String']['input']>; /** Use this attribute to specify the highest possible value in the range. */
to?: InputMaybe<Scalars['String']['input']>;
};