diff options
author | Michael Muré <batolettre@gmail.com> | 2021-02-08 09:35:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 09:35:45 +0100 |
commit | ef7a0f1b11c8e44a44f1ec23a68cab2adefad36c (patch) | |
tree | e6f345e4968f59c8f521d27f1caebff076a40143 /webui/src/graphql | |
parent | 0eb4a5907118f5cad6e4dea64a6ca87aad0247ee (diff) | |
parent | 29ea8df4259921f1789e0e6d584767fc5f54b284 (diff) | |
download | git-bug-ef7a0f1b11c8e44a44f1ec23a68cab2adefad36c.tar.gz |
Merge pull request #555 from claudioantonio/master
Commit for #541
Diffstat (limited to 'webui/src/graphql')
-rw-r--r-- | webui/src/graphql/fragments.graphql | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/webui/src/graphql/fragments.graphql b/webui/src/graphql/fragments.graphql new file mode 100644 index 00000000..03a235f9 --- /dev/null +++ b/webui/src/graphql/fragments.graphql @@ -0,0 +1,19 @@ +# Label.tsx +fragment Label on Label { + name + color { + R + G + B + } +} + +# Author.tsx +fragment authored on Authored { + author { + name + email + displayName + avatarUrl + } +} |