diff options
author | Michael Muré <michael.mure@consensys.net> | 2019-03-31 21:44:14 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-04-01 14:03:13 +0200 |
commit | 15c258cdc4ba37820362a44dfc2636ed1ff92b4c (patch) | |
tree | 0790e36bf4846b12b367f12670540eec6ee023f3 /graphql/resolvers/identity.go | |
parent | e028b895aa21553937d732044b7bb0a15c5276f6 (diff) | |
download | git-bug-15c258cdc4ba37820362a44dfc2636ed1ff92b4c.tar.gz git-bug-15c258cdc4ba37820362a44dfc2636ed1ff92b4c.zip |
graphql: expose allIdentities, identities and userIdentity in the repo
Diffstat (limited to 'graphql/resolvers/identity.go')
-rw-r--r-- | graphql/resolvers/identity.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/graphql/resolvers/identity.go b/graphql/resolvers/identity.go index d4f9bba2..05f7207e 100644 --- a/graphql/resolvers/identity.go +++ b/graphql/resolvers/identity.go @@ -3,15 +3,22 @@ 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(), nil } +func (identityResolver) HumanID(ctx context.Context, obj *identity.Interface) (string, error) { + return (*obj).HumanId(), nil +} + func (identityResolver) Name(ctx context.Context, obj *identity.Interface) (*string, error) { return nilIfEmpty((*obj).Name()) } |