Versions in this module Expand all Collapse all v0 v0.1.0 Oct 20, 2024 Changes in this version + func NewExecutableSchema(cfg Config) graphql.ExecutableSchema + type ComplexityRoot struct + Entity struct{ ... } + Product struct{ ... } + Query struct{ ... } + Service struct{ ... } + type Config struct + Complexity ComplexityRoot + Directives DirectiveRoot + Resolvers ResolverRoot + type DirectiveRoot struct + type EntityResolver interface + FindProductByUpc func(ctx context.Context, upc string) (*model.Product, error) + type QueryResolver interface + TopProducts func(ctx context.Context, first *int) ([]*model.Product, error) + type ResolverRoot interface + Entity func() EntityResolver + Query func() QueryResolver