import { ShopifyQueryRootSearchArgs } from '@daffodil/driver/shopify'
The schema’s entry-point for queries. This acts as the public, top-level API from which all queries must start.
interface ShopifyQueryRootSearchArgs {
after: string
before: string
first: number
last: number
prefix: ShopifySearchPrefixQueryType
productFilters: ShopifyProductFilter[]
query: string
reverse: boolean
sortKey: ShopifySearchSortKeys
types: ShopifySearchType[]
unavailableProducts: ShopifySearchUnavailableProductsType
}