ChemPare Documentation - v0.0.0
    Preparing search index...

    Interface GraphQLQueryVariables

    Variables used in GraphQL queries for the Wix product catalog.

    interface GraphQLQueryVariables {
        mainCollectionId: string;
        offset: number;
        limit: number;
        sort: null | string;
        filters: { term: { field: string; op: string; values: string[] } };
        withOptions: boolean;
        withPriceRange: boolean;
    }
    Index

    Properties

    mainCollectionId: string

    ID of the main collection to query

    offset: number

    Number of items to skip in pagination

    limit: number

    Maximum number of items to return

    sort: null | string

    Sort criteria for the results

    filters: { term: { field: string; op: string; values: string[] } }

    Filter criteria for the query

    withOptions: boolean

    Whether to include option details in the response

    withPriceRange: boolean

    Whether to include price range information in the response