root.graphql

 1type Query {
 2    """Access a repository by reference/name. If no ref is given, the default repository is returned if any."""
 3    repository(ref: String): Repository
 4
 5    """List all registered repositories."""
 6    repositories(
 7      """Returns the elements in the list that come after the specified cursor."""
 8      after: String
 9      """Returns the elements in the list that come before the specified cursor."""
10      before: String
11      """Returns the first _n_ elements from the list."""
12      first: Int
13      """Returns the last _n_ elements from the list."""
14      last: Int
15    ): RepositoryConnection!
16}
17
18type Mutation # See each entity mutations