aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/resolvers/identity.go
blob: b8aa72a7983a1041b3108c774102bea57e5124b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package resolvers

import (
	"context"

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

var _ graph.IdentityResolver = &identityResolver{}

type identityResolver struct{}

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

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

}