Versions in this module Expand all Collapse all v1 v1.9.9 Jul 30, 2020 v1.3.3 Jul 30, 2020 Changes in this version + func NewExecutableSchema(cfg Config) graphql.ExecutableSchema + type ComplexityRoot struct + File struct{ ... } + Mutation struct{ ... } + Query struct{ ... } + type Config struct + Complexity ComplexityRoot + Directives DirectiveRoot + Resolvers ResolverRoot + type DirectiveRoot struct + type MutationResolver interface + MultipleUpload func(ctx context.Context, files []*graphql.Upload) ([]*model.File, error) + MultipleUploadWithPayload func(ctx context.Context, req []*model.UploadFile) ([]*model.File, error) + SingleUpload func(ctx context.Context, file graphql.Upload) (*model.File, error) + SingleUploadWithPayload func(ctx context.Context, req model.UploadFile) (*model.File, error) + type QueryResolver interface + Empty func(ctx context.Context) (string, error) + type ResolverRoot interface + Mutation func() MutationResolver + Query func() QueryResolver + type Stub struct + MutationResolver struct{ ... } + QueryResolver struct{ ... } + func (r *Stub) Mutation() MutationResolver + func (r *Stub) Query() QueryResolver