repository.graphql

 1type Repository {
 2    """The name of the repository"""
 3    name: String
 4
 5    """All the boards"""
 6    allBoards(
 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      """A query to select and order bugs."""
16      query: String
17    ): BoardConnection!
18
19    board(prefix: String!): Board
20
21    """All the bugs"""
22    allBugs(
23        """Returns the elements in the list that come after the specified cursor."""
24        after: String
25        """Returns the elements in the list that come before the specified cursor."""
26        before: String
27        """Returns the first _n_ elements from the list."""
28        first: Int
29        """Returns the last _n_ elements from the list."""
30        last: Int
31        """A query to select and order bugs."""
32        query: String
33    ): BugConnection!
34
35    bug(prefix: String!): Bug
36
37    """All the identities"""
38    allIdentities(
39        """Returns the elements in the list that come after the specified cursor."""
40        after: String
41        """Returns the elements in the list that come before the specified cursor."""
42        before: String
43        """Returns the first _n_ elements from the list."""
44        first: Int
45        """Returns the last _n_ elements from the list."""
46        last: Int
47    ): IdentityConnection!
48
49    identity(prefix: String!): Identity
50
51    """The identity created or selected by the user as its own"""
52    userIdentity: Identity
53
54    """List of valid labels."""
55    validLabels(
56        """Returns the elements in the list that come after the specified cursor."""
57        after: String
58        """Returns the elements in the list that come before the specified cursor."""
59        before: String
60        """Returns the first _n_ elements from the list."""
61        first: Int
62        """Returns the last _n_ elements from the list."""
63        last: Int
64    ): LabelConnection!
65}