🚨 Announcing Vendure v2 Beta

PaginatedList

PaginatedList

A type describing the shape of a paginated list response. In Vendure, almost all list queries (products, collections, orders, customers etc) return an object of this type.

Signature

type PaginatedList<T> = {
  items: T[];
  totalItems: number;
}

Members

items

property
type:
T[]

totalItems

property
type:
number