aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug/Bug.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/pages/bug/Bug.graphql')
-rw-r--r--webui/src/pages/bug/Bug.graphql13
1 files changed, 13 insertions, 0 deletions
diff --git a/webui/src/pages/bug/Bug.graphql b/webui/src/pages/bug/Bug.graphql
new file mode 100644
index 00000000..498242c0
--- /dev/null
+++ b/webui/src/pages/bug/Bug.graphql
@@ -0,0 +1,13 @@
+#import "../components/fragments.graphql"
+
+fragment Bug on Bug {
+ id
+ humanId
+ status
+ title
+ labels {
+ ...Label
+ }
+ createdAt
+ ...authored
+}