Versions in this module Expand all Collapse all v0 v0.14.0 Dec 6, 2024 v0.13.0 Nov 14, 2024 Changes in this version + func NewExecutableSchema(cfg Config) graphql.ExecutableSchema + type ComplexityRoot struct + Output struct{ ... } + OutputNillable struct{ ... } + Query struct{ ... } + type Config struct + Complexity ComplexityRoot + Directives DirectiveRoot + Resolvers ResolverRoot + Schema *ast.Schema + type DirectiveRoot struct + type QueryResolver interface + ReturnScalar func(ctx context.Context, input bool) (bool, error) + ReturnScalarNillable func(ctx context.Context, input *bool) (*bool, error) + Simple func(ctx context.Context) (*model.Output, error) + SimpleArgument func(ctx context.Context, input string) (*model.Output, error) + SimpleArgumentNillable func(ctx context.Context, input *string) (*model.OutputNillable, error) + SimpleNillable func(ctx context.Context) (*model.Output, error) + type Resolver struct + func (r *Resolver) Query() QueryResolver + type ResolverRoot interface + Query func() QueryResolver