From cf1e13b6837d6dda794b9c0dca5af1bb8e095794 Mon Sep 17 00:00:00 2001 From: Lena Date: Thu, 18 Mar 2021 19:13:57 +0100 Subject: Add basic bug listing --- api/graphql/schema/repository.graphql | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'api/graphql/schema/repository.graphql') 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 +} -- cgit