mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-16 11:00:42 +03:00
22 lines
486 B
Go
22 lines
486 B
Go
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
|
|
|
|
}
|