ChemPal Documentation - v1.6.0
    Preparing search index...

    Interface ShopifyQueryVariables

    Variables accepted by the Catalog Shopify GraphQL query (@/queries/shopify-product-query.gql).

    const variables: ShopifyQueryVariables = { q: "sodium OR potassium", n: 200, cursor: null };
    
    interface ShopifyQueryVariables {
        q: string;
        n: number;
        cursor: null | string;
    }
    Index

    Properties

    Properties

    q: string

    Storefront search query (supports AND/OR/NOT and field filters like title:*gold*)

    n: number

    Maximum number of products to return in this page

    cursor: null | string

    Relay pagination cursor (after); null for the first page