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 bug(prefix: String!): Bug
21
22 """All the identities"""
23 allIdentities(
24 """Returns the elements in the list that come after the specified cursor."""
25 after: String
26 """Returns the elements in the list that come before the specified cursor."""
27 before: String
28 """Returns the first _n_ elements from the list."""
29 first: Int
30 """Returns the last _n_ elements from the list."""
31 last: Int
32 ): IdentityConnection!
33
34 identity(prefix: String!): Identity
35
36 """The identity created or selected by the user as its own"""
37 userIdentity: Identity
38
39 """List of valid labels."""
40 validLabels(
41 """Returns the elements in the list that come after the specified cursor."""
42 after: String
43 """Returns the elements in the list that come before the specified cursor."""
44 before: String
45 """Returns the first _n_ elements from the list."""
46 first: Int
47 """Returns the last _n_ elements from the list."""
48 last: Int
49 ): LabelConnection!
50}