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




                 
                                                      


                                                 

                                                  

                              

                                                                                         
 




                                                                                                
package resolvers

import (
	"context"

	"github.com/MichaelMure/git-bug/graphql/graph"
	"github.com/MichaelMure/git-bug/identity"
)

var _ graph.IdentityResolver = &identityResolver{}

type identityResolver struct{}

func (identityResolver) ID(ctx context.Context, obj identity.Interface) (string, error) {
	return obj.Id().String(), nil
}

func (r identityResolver) HumanID(ctx context.Context, obj identity.Interface) (string, error) {
	return obj.Id().Human(), nil

}