repository.graphql

 1
 2type Repository {
 3    """The name of the repository"""
 4    name: String
 5
 6    """All the bugs"""
 7    allBugs(
 8        """Returns the elements in the list that come after the specified cursor."""
 9        after: String
10        """Returns the elements in the list that come before the specified cursor."""
11        before: String
12        """Returns the first _n_ elements from the list."""
13        first: Int
14        """Returns the last _n_ elements from the list."""
15        last: Int
16        """A query to select and order bugs."""
17        query: String
18    ): BugConnection!
19
20    allBugsDetail(
21        query: String
22    ): [Bug]!
23
24    bug(prefix: String!): Bug
25
26    """All the identities"""
27    allIdentities(
28        """Returns the elements in the list that come after the specified cursor."""
29        after: String
30        """Returns the elements in the list that come before the specified cursor."""
31        before: String
32        """Returns the first _n_ elements from the list."""
33        first: Int
34        """Returns the last _n_ elements from the list."""
35        last: Int
36    ): IdentityConnection!
37
38    identity(prefix: String!): Identity
39
40    """The identity created or selected by the user as its own"""
41    userIdentity: Identity
42
43    """List of valid labels."""
44    validLabels(
45        """Returns the elements in the list that come after the specified cursor."""
46        after: String
47        """Returns the elements in the list that come before the specified cursor."""
48        before: String
49        """Returns the first _n_ elements from the list."""
50        first: Int
51        """Returns the last _n_ elements from the list."""
52        last: Int
53    ): LabelConnection!
54}