UNPKG

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.

10 lines (9 loc) 714 B
import BaseList, { GetPageInfo, GetTotalCount, MapQueryData } from "../../helpers/BaseList"; import { CollectionList as CollectionListQuery, CollectionListVariables } from "../../queries/gqlTypes/CollectionList"; import { BaseCollection } from "../../fragments/gqlTypes/BaseCollection"; export declare class CollectionList extends BaseList<CollectionListQuery, BaseCollection, CollectionListVariables> { getPageInfo: GetPageInfo<CollectionListQuery>; getTotalCount: GetTotalCount<CollectionListQuery>; mapQueryData: MapQueryData<CollectionListQuery, BaseCollection>; query: (variables: CollectionListVariables) => Promise<import("apollo-client").ApolloQueryResult<CollectionListQuery>>; }