aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/resolvers/identity.go
blob: 2d1e909bc0456d9a5f09ac0363fe0ae3516afb2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
}