diff options
Diffstat (limited to 'webui/src/list/BugRow.graphql')
-rw-r--r-- | webui/src/list/BugRow.graphql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/webui/src/list/BugRow.graphql b/webui/src/list/BugRow.graphql new file mode 100644 index 00000000..3f9a1ef6 --- /dev/null +++ b/webui/src/list/BugRow.graphql @@ -0,0 +1,14 @@ +#import "../Author.graphql" +#import "../Label.graphql" + +fragment BugRow on Bug { + id + humanId + title + status + createdAt + labels { + ...Label + } + ...authored +} |