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') 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 From 41e85023019bc13c06a1de2c431e0bd920e9e29a Mon Sep 17 00:00:00 2001 From: Sascha Date: Sat, 20 Mar 2021 15:13:10 +0100 Subject: Use profile page for each identity Authorcomponent links to the authors profile page. Replace pofile buglist with statistics --- api/graphql/schema/repository.graphql | 4 ---- 1 file changed, 4 deletions(-) (limited to 'api/graphql') diff --git a/api/graphql/schema/repository.graphql b/api/graphql/schema/repository.graphql index 5ce932b7..d7411be7 100644 --- a/api/graphql/schema/repository.graphql +++ b/api/graphql/schema/repository.graphql @@ -17,10 +17,6 @@ type Repository { query: String ): BugConnection! - allBugsDetail( - query: String - ): [Bug]! - bug(prefix: String!): Bug """All the identities""" -- cgit