OBJECT

ItemsPage

A page containing a list of Items and a token for further pagination.

link GraphQL Schema definition

1type ItemsPage {
2
3# A pagination token for fetching the next page.
4nextToken: String
5
6# A list of items.
7items: [Item]
8
9}

link Required by