CollectionProductsArgs
A collection represents a grouping of products that a shop owner can create to organize them or make their shops easier to browse.
import { CollectionProductsArgs } from '@daffodil/driver/shopify'
type CollectionProductsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
filters?: InputMaybe<Array<ProductFilter>>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
reverse?: InputMaybe<Scalars['Boolean']['input']>;
sortKey?: InputMaybe<ProductCollectionSortKeys>;
}
Type | Options |
---|---|
CollectionProductsArgs | {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
filters?: InputMaybe |