mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-17 13:10:17 +03:00
21 lines
469 B
Go
21 lines
469 B
Go
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 (identityResolver) HumanID(ctx context.Context, obj identity.Interface) (string, error) {
|
|
return obj.Id().Human(), nil
|
|
}
|