aboutsummaryrefslogtreecommitdiffstats
path: root/api/graphql/schema
diff options
context:
space:
mode:
Diffstat (limited to 'api/graphql/schema')
-rw-r--r--api/graphql/schema/repository.graphql6
1 files changed, 5 insertions, 1 deletions
diff --git a/api/graphql/schema/repository.graphql b/api/graphql/schema/repository.graphql
index 2b98fe37..5ce932b7 100644
--- a/api/graphql/schema/repository.graphql
+++ b/api/graphql/schema/repository.graphql
@@ -17,6 +17,10 @@ type Repository {
query: String
): BugConnection!
+ allBugsDetail(
+ query: String
+ ): [Bug]!
+
bug(prefix: String!): Bug
"""All the identities"""
@@ -47,4 +51,4 @@ type Repository {
"""Returns the last _n_ elements from the list."""
last: Int
): LabelConnection!
-} \ No newline at end of file
+}