aboutsummaryrefslogblamecommitdiffstats
path: root/graphql/schema/types.graphql
blob: 0182885e13b4ed77d3bda1ce65923a5f05ff1ac3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
           

           









                                                        















                                                            
 
scalar Time
scalar Hash

"""Defines a color by red, green and blue components."""
type Color {
    """Red component of the color."""
    R: Int!
    """Green component of the color."""
    G: Int!
    """Blue component of the color."""
    B: Int!
}

"""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!
}