OBJECT

ShelfConnection

Paginated list of Shelves. (pagination not yet implemented) Implements the Relay cursor connections specification. See: https://facebook.github.io/relay/graphql/connections.htm.

link GraphQL Schema definition

1type ShelfConnection {
2
3# The list of shelves to display.
4edges: [ShelfEdge!]
5
6# As pagination is currently not supported by the backend, this will always be the
7# zero value.
8pageInfo: PageInfo!
9
10}