OBJECT

ShelfEdge

Contains information about a Shelf's relationship to a given page (connection), and the Shelf itself.

link GraphQL Schema definition

1type ShelfEdge {
2
3# As pagination is currently not supported by the backend, this will always be the
4# zero value.
5cursor: Cursor!
6
7# The shelf.
8node: Shelf!
9
10}