aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/schema/repository.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'graphql/schema/repository.graphql')
-rw-r--r--graphql/schema/repository.graphql5
1 files changed, 4 insertions, 1 deletions
diff --git a/graphql/schema/repository.graphql b/graphql/schema/repository.graphql
index 20a3cf0b..2b98fe37 100644
--- a/graphql/schema/repository.graphql
+++ b/graphql/schema/repository.graphql
@@ -1,5 +1,8 @@
type Repository {
+ """The name of the repository"""
+ name: String
+
"""All the bugs"""
allBugs(
"""Returns the elements in the list that come after the specified cursor."""
@@ -10,7 +13,7 @@ type Repository {
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
- """A query to select and order bugs"""
+ """A query to select and order bugs."""
query: String
): BugConnection!