aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug/BugQuery.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/pages/bug/BugQuery.graphql')
-rw-r--r--webui/src/pages/bug/BugQuery.graphql9
1 files changed, 9 insertions, 0 deletions
diff --git a/webui/src/pages/bug/BugQuery.graphql b/webui/src/pages/bug/BugQuery.graphql
new file mode 100644
index 00000000..cdc4723f
--- /dev/null
+++ b/webui/src/pages/bug/BugQuery.graphql
@@ -0,0 +1,9 @@
+#import "./Bug.graphql"
+
+query GetBug($id: String!) {
+ repository {
+ bug(prefix: $id) {
+ ...Bug
+ }
+ }
+}