git-bug/graphql/resolvers/label.go
Michael Muré b2f8572c44 graphql: change mutations to respect the Relay specification
https://facebook.github.io/relay/graphql/mutations.htm

This specification also allow to expose a mutationId for fire and forget,
as well as the created operation.
2019-06-16 21:29:49 +02:00

46 lines
1.2 KiB
Go

package resolvers
import (
"context"
"fmt"
"image/color"
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/graphql/graph"
"github.com/MichaelMure/git-bug/graphql/models"
)
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
}
var _ graph.LabelChangeResultResolver = &labelChangeResultResolver{}
type labelChangeResultResolver struct{}
func (labelChangeResultResolver) Status(ctx context.Context, obj *bug.LabelChangeResult) (models.LabelChangeStatus, error) {
switch obj.Status {
case bug.LabelChangeAdded:
return models.LabelChangeStatusAdded, nil
case bug.LabelChangeRemoved:
return models.LabelChangeStatusRemoved, nil
case bug.LabelChangeDuplicateInOp:
return models.LabelChangeStatusDuplicateInOp, nil
case bug.LabelChangeAlreadySet:
return models.LabelChangeStatusAlreadyExist, nil
case bug.LabelChangeDoesntExist:
return models.LabelChangeStatusDoesntExist, nil
}
return "", fmt.Errorf("unknown status")
}