usimple-saleor-sdk
Version:
This package contains all queries and mutations that are used in our sample storefront. It can be used for semi-custom or fully-custom (with ability to extend existing queries) storefront solutions.
9 lines (8 loc) • 670 B
TypeScript
import BaseList, { GetPageInfo, GetTotalCount, MapQueryData } from "../../helpers/BaseList";
import { ProductList as ProductListQuery, ProductListVariables, ProductList_products_edges_node } from "../../queries/gqlTypes/ProductList";
export declare class ProductList extends BaseList<ProductListQuery, ProductList_products_edges_node, ProductListVariables> {
getPageInfo: GetPageInfo<ProductListQuery>;
getTotalCount: GetTotalCount<ProductListQuery>;
mapQueryData: MapQueryData<ProductListQuery, ProductList_products_edges_node>;
query: (variables: ProductListVariables) => Promise<import("apollo-client").ApolloQueryResult<ProductListQuery>>;
}