func NewExecutableSchema(cfg Config) graphql.ExecutableSchema
NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface.
type ComplexityRoot struct { Element struct { Child func(childComplexity int) int Error func(childComplexity int) int Mismatched func(childComplexity int) int } Query struct { Coercion func(childComplexity int, value []*models.ListCoercion) int Complexity func(childComplexity int, value int) int Date func(childComplexity int, filter models.DateFilter) int Error func(childComplexity int, typeArg *models.ErrorType) int JSONEncoding func(childComplexity int) int Path func(childComplexity int) int Viewer func(childComplexity int) int } RemoteModelWithOmitempty struct { Description func(childComplexity int) int } User struct { Likes func(childComplexity int) int Name func(childComplexity int) int PhoneNumber func(childComplexity int) int Query func(childComplexity int) int } Viewer struct { User func(childComplexity int) int } }
type Config struct { Schema *ast.Schema Resolvers ResolverRoot Directives DirectiveRoot Complexity ComplexityRoot }
type CustomError struct { UserMessage string InternalError string }
func (e *CustomError) Error() string
type DirectiveRoot struct { Magic func(ctx context.Context, obj interface{}, next graphql.Resolver, kind *int) (res interface{}, err error) }
type ElementResolver interface { Child(ctx context.Context, obj *models.Element) (*models.Element, error) Error(ctx context.Context, obj *models.Element) (bool, error) Mismatched(ctx context.Context, obj *models.Element) ([]bool, error) }
type QueryResolver interface { Path(ctx context.Context) ([]*models.Element, error) Date(ctx context.Context, filter models.DateFilter) (bool, error) Viewer(ctx context.Context) (*models.Viewer, error) JSONEncoding(ctx context.Context) (string, error) Error(ctx context.Context, typeArg *models.ErrorType) (bool, error) Complexity(ctx context.Context, value int) (bool, error) Coercion(ctx context.Context, value []*models.ListCoercion) (bool, error) }
type Resolver struct{}
func (r *Resolver) Element() ElementResolver
func (r *Resolver) Query() QueryResolver
func (r *Resolver) User() UserResolver
type ResolverRoot interface { Element() ElementResolver Query() QueryResolver User() UserResolver }
type UserResolver interface { Likes(ctx context.Context, obj *remote_api.User) ([]string, error) }
Name | Synopsis |
---|---|
.. | |
cmd | |
integration | |
models-go | |
remote_api | |
testomitempty |