Skip to content

Commit

Permalink
Merge pull request #1080 from sonatard/fix-testdata
Browse files Browse the repository at this point in the history
Fix test data
  • Loading branch information
vektah committed Mar 1, 2020
2 parents b788cce + df5ac92 commit e7bf754
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package customresolver

// This file will be automatically regenerated based on the schema, any resolver implementations
// will be copied through when generating and any unknown code will be moved to the end.
package customresolver

import (
"context"
Expand All @@ -18,7 +19,10 @@ func (r *resolverCustomResolverType) Name(ctx context.Context, obj *customresolv
return "", nil
}

// Query returns customresolver.QueryResolver implementation.
func (r *CustomResolverType) Query() customresolver.QueryResolver { return &queryCustomResolverType{r} }

// Resolver returns customresolver.ResolverResolver implementation.
func (r *CustomResolverType) Resolver() customresolver.ResolverResolver {
return &resolverCustomResolverType{r}
}
Expand Down

0 comments on commit e7bf754

Please sign in to comment.