Versions in this module Expand all Collapse all v1 v1.41.0 Jun 27, 2022 Changes in this version + var ErrTypeNotFound = errors.New("type not found") + var ErrUnknownType = errors.New("unknown type") + func NewExecutableSchema(cfg Config) graphql.ExecutableSchema + type ComplexityRoot struct + Entity struct{ ... } + Product struct{ ... } + Purchase struct{ ... } + Query struct{ ... } + Sale struct{ ... } + User struct{ ... } + WalletType1 struct{ ... } + WalletType2 struct{ ... } + type Config struct + Complexity ComplexityRoot + Directives DirectiveRoot + Resolvers ResolverRoot + type DirectiveRoot struct + type EntityResolver interface + FindUserByID func(ctx context.Context, id string) (*model.User, error) + type QueryResolver interface + Me func(ctx context.Context) (*model.User, error) + type ResolverRoot interface + Entity func() EntityResolver + Query func() QueryResolver