Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewExecutableSchema ¶
func NewExecutableSchema(cfg Config) graphql.ExecutableSchema
NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface.
Types ¶
type ComplexityRoot ¶
type ComplexityRoot struct { Entity struct { FindProductByUpc func(childComplexity int, upc string) int } Product struct { InStock func(childComplexity int) int Price func(childComplexity int) int ShippingEstimate func(childComplexity int) int Upc func(childComplexity int) int Weight func(childComplexity int) int } Query struct { // contains filtered or unexported fields } Service struct { SDL func(childComplexity int) int } }
type Config ¶
type Config struct { Resolvers ResolverRoot Directives DirectiveRoot Complexity ComplexityRoot }
type DirectiveRoot ¶
type DirectiveRoot struct { }
type EntityResolver ¶
type Product ¶
type ProductResolver ¶
type ResolverRoot ¶
type ResolverRoot interface { Entity() EntityResolver Product() ProductResolver }
func NewResolver ¶
func NewResolver() ResolverRoot
Click to show internal directories.
Click to hide internal directories.