GitHub

CollectionProductsArgs

import { CollectionProductsArgs } from '@daffodil/driver/shopify'

A collection represents a grouping of products that a shop owner can create to organize them or make their shops easier to browse.

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>;
}