diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-09 02:56:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-09 02:56:37 +0100 |
commit | 3caffeef4d2ed25d4eb5d4bfd262f4fc3b92561f (patch) | |
tree | 40730a7ff92a420af65d9d2560a07d47a6a72174 /graphql/resolvers/identity.go | |
parent | 9e1a987b4d94dc5c2115423ede5954d4faf1d342 (diff) | |
parent | 2af456f5e05f242d9e13049e038b9bd2d6dfc1cc (diff) | |
download | git-bug-3caffeef4d2ed25d4eb5d4bfd262f4fc3b92561f.tar.gz |
Merge pull request #316 from MichaelMure/lazy-graphql
graphql: use the cache in priority for fast browsing in the WebUI
Diffstat (limited to 'graphql/resolvers/identity.go')
-rw-r--r-- | graphql/resolvers/identity.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphql/resolvers/identity.go b/graphql/resolvers/identity.go index d36669d0..b8aa72a7 100644 --- a/graphql/resolvers/identity.go +++ b/graphql/resolvers/identity.go @@ -4,18 +4,18 @@ import ( "context" "github.com/MichaelMure/git-bug/graphql/graph" - "github.com/MichaelMure/git-bug/identity" + "github.com/MichaelMure/git-bug/graphql/models" ) var _ graph.IdentityResolver = &identityResolver{} type identityResolver struct{} -func (identityResolver) ID(ctx context.Context, obj identity.Interface) (string, error) { +func (identityResolver) ID(ctx context.Context, obj models.IdentityWrapper) (string, error) { return obj.Id().String(), nil } -func (r identityResolver) HumanID(ctx context.Context, obj identity.Interface) (string, error) { +func (r identityResolver) HumanID(ctx context.Context, obj models.IdentityWrapper) (string, error) { return obj.Id().Human(), nil } |