aboutsummaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorLena <lena.becker-3@mni.thm.de>2021-03-18 19:13:57 +0100
committerSascha <GlancingMind@outlook.com>2021-04-13 19:07:57 +0200
commitcf1e13b6837d6dda794b9c0dca5af1bb8e095794 (patch)
tree9d9938155069972b82cb45063d3aa469563d0c88 /api
parentad51d884a6926bc69073d1d5aaf584acd7db2c34 (diff)
downloadgit-bug-cf1e13b6837d6dda794b9c0dca5af1bb8e095794.tar.gz
Add basic bug listing
Diffstat (limited to 'api')
-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
+}