aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/new/NewBug.graphql
diff options
context:
space:
mode:
authorCláudio <claudio.engdist@gmail.com>2021-01-28 21:24:40 -0300
committerCláudio <claudio.engdist@gmail.com>2021-01-28 21:24:40 -0300
commitf8d41c3bcda516cd33be25475ac52ab72c376e1f (patch)
tree333df9ea0ba24dd1064408637b86ae3f36a40800 /webui/src/pages/new/NewBug.graphql
parentc009bea662d9fc875c8e7cb266cebbfc2985f226 (diff)
downloadgit-bug-f8d41c3bcda516cd33be25475ac52ab72c376e1f.tar.gz
Partial commit for #158
- It´s possible to create new issues from webui (only title) Next step - Finish new issue form (First comment field and style) - Update Readme about codegen usage and enforcing playground usage
Diffstat (limited to 'webui/src/pages/new/NewBug.graphql')
-rw-r--r--webui/src/pages/new/NewBug.graphql7
1 files changed, 7 insertions, 0 deletions
diff --git a/webui/src/pages/new/NewBug.graphql b/webui/src/pages/new/NewBug.graphql
new file mode 100644
index 00000000..92df016e
--- /dev/null
+++ b/webui/src/pages/new/NewBug.graphql
@@ -0,0 +1,7 @@
+mutation newBug($input: NewBugInput!) {
+ newBug(input: $input) {
+ bug {
+ humanId
+ }
+ }
+} \ No newline at end of file