repository.graphql

 1type Repository {
 2    """The name of the repository"""
 3    name: String
 4
 5    """All the bugs"""
 6    allBugs(
 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    ): BugConnection!
18
19    bug(prefix: String!): Bug
20
21    """All the identities"""
22    allIdentities(
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    ): IdentityConnection!
32
33    identity(prefix: String!): Identity
34
35    """The identity created or selected by the user as its own"""
36    userIdentity: Identity
37
38    """List of valid labels."""
39    validLabels(
40        """Returns the elements in the list that come after the specified cursor."""
41        after: String
42        """Returns the elements in the list that come before the specified cursor."""
43        before: String
44        """Returns the first _n_ elements from the list."""
45        first: Int
46        """Returns the last _n_ elements from the list."""
47        last: Int
48    ): LabelConnection!
49}