diff options
Diffstat (limited to 'webui/src/pages/bug/Bug.graphql')
-rw-r--r-- | webui/src/pages/bug/Bug.graphql | 13 |
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 +} |