aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/resolvers/label.go
diff options
context:
space:
mode:
Diffstat (limited to 'graphql/resolvers/label.go')
-rw-r--r--graphql/resolvers/label.go22
1 files changed, 22 insertions, 0 deletions
diff --git a/graphql/resolvers/label.go b/graphql/resolvers/label.go
new file mode 100644
index 00000000..7619f748
--- /dev/null
+++ b/graphql/resolvers/label.go
@@ -0,0 +1,22 @@
+package resolvers
+
+import (
+ "context"
+ "image/color"
+
+ "github.com/MichaelMure/git-bug/bug"
+ "github.com/MichaelMure/git-bug/graphql/graph"
+)
+
+var _ graph.LabelResolver = &labelResolver{}
+
+type labelResolver struct{}
+
+func (labelResolver) Name(ctx context.Context, obj *bug.Label) (string, error) {
+ return obj.String(), nil
+}
+
+func (labelResolver) Color(ctx context.Context, obj *bug.Label) (*color.RGBA, error) {
+ rgba := obj.RGBA()
+ return &rgba, nil
+}