scalar Time scalar Label scalar Hash """Information about pagination in a connection.""" type PageInfo { """When paginating forwards, are there more items?""" hasNextPage: Boolean! """When paginating backwards, are there more items?""" hasPreviousPage: Boolean! """When paginating backwards, the cursor to continue.""" startCursor: String! """When paginating forwards, the cursor to continue.""" endCursor: String! } """An object that has an author.""" interface Authored { """The author of this object.""" author: Identity! }