1scalar CombinedId
 2scalar Time
 3scalar Hash
 4
 5"""Defines a color by red, green and blue components."""
 6type Color {
 7    """Red component of the color."""
 8    R: Int!
 9    """Green component of the color."""
10    G: Int!
11    """Blue component of the color."""
12    B: Int!
13}
14
15"""Information about pagination in a connection."""
16type PageInfo {
17    """When paginating forwards, are there more items?"""
18    hasNextPage: Boolean!
19    """When paginating backwards, are there more items?"""
20    hasPreviousPage: Boolean!
21    """When paginating backwards, the cursor to continue."""
22    startCursor: String!
23    """When paginating forwards, the cursor to continue."""
24    endCursor: String!
25}
26
27"""An object that has an author."""
28interface Authored {
29    """The author of this object."""
30    author: Identity!
31}