aboutsummaryrefslogblamecommitdiffstats
path: root/api/graphql/resolvers/comment.go
blob: 7dddc3c8c0fa3faa036a3325ae08267376ec370f (plain) (tree)
1
2
3
4
5
6
7
8
9




                 

                                                           
                                                     
                                               





                                                



                                                                                               


                                                                                                      
package resolvers

import (
	"context"

	"github.com/MichaelMure/git-bug/api/graphql/graph"
	"github.com/MichaelMure/git-bug/api/graphql/models"
	"github.com/MichaelMure/git-bug/entities/bug"
	"github.com/MichaelMure/git-bug/entity"
)

var _ graph.CommentResolver = &commentResolver{}

type commentResolver struct{}

func (c commentResolver) ID(ctx context.Context, obj *bug.Comment) (entity.CombinedId, error) {
	return obj.CombinedId(), nil
}

func (c commentResolver) Author(_ context.Context, obj *bug.Comment) (models.IdentityWrapper, error) {
	return models.NewLoadedIdentity(obj.Author), nil
}