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

    Interface QueryResponse

    Response type for Wix product catalog queries, containing paginated product data.

    interface QueryResponse {
        data: {
            catalog: {
                category: {
                    numOfProducts: number;
                    productsWithMetaData: { totalCount: number; list: ProductObject[] };
                };
            };
        };
    }
    Index

    Properties

    Properties

    data: {
        catalog: {
            category: {
                numOfProducts: number;
                productsWithMetaData: { totalCount: number; list: ProductObject[] };
            };
        };
    }

    Root response data object

    Type declaration

    • catalog: {
          category: {
              numOfProducts: number;
              productsWithMetaData: { totalCount: number; list: ProductObject[] };
          };
      }

      Catalog information

      • category: {
            numOfProducts: number;
            productsWithMetaData: { totalCount: number; list: ProductObject[] };
        }

        Category information

        • numOfProducts: number

          Total number of products in the category

        • productsWithMetaData: { totalCount: number; list: ProductObject[] }

          Paginated product data with metadata

          • totalCount: number

            Total count of all available products matching the query

          • list: ProductObject[]

            Array of products in the current page