GitHub

QueryRootPredictiveSearchArgs

import { QueryRootPredictiveSearchArgs } 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.

type QueryRootPredictiveSearchArgs = {
    limit?: InputMaybe<Scalars['Int']['input']>;
    limitScope?: InputMaybe<PredictiveSearchLimitScope>;
    query: Scalars['String']['input'];
    searchableFields?: InputMaybe<Array<SearchableField>>;
    types?: InputMaybe<Array<PredictiveSearchType>>;
    unavailableProducts?: InputMaybe<SearchUnavailableProductsType>;
}