From 29ea8df4259921f1789e0e6d584767fc5f54b284 Mon Sep 17 00:00:00 2001 From: Cláudio Date: Fri, 5 Feb 2021 19:36:09 -0300 Subject: Commit for #541 --- webui/src/graphql/fragments.graphql | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 webui/src/graphql/fragments.graphql (limited to 'webui/src/graphql/fragments.graphql') 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 + } +} -- cgit