MetaCollection
Data about the response, including pagination and collection totals.Pagination links for the previous and next parts of the whole collection.
interface MetaCollection {
pageInfo?: PageInfo;
pagination?: Pagination;
responseInfo?: string;
totalItems?: number;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
pageInfo | Optional | PageInfo | Information about pagination in a GraphQL response. |
pagination | Optional | Pagination | Pagination model including all necessary information for pagination. |
responseInfo | Optional | string | Information about the GraphQL response e.g "no products", "unable to fetch data" |
totalItems | Optional | number | Total items of the list results |