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 { FindManufacturerByID func(childComplexity int, id string) int FindProductByManufacturerIDAndID func(childComplexity int, manufacturerID string, id string) int } Manufacturer struct { ID func(childComplexity int) int Name func(childComplexity int) int } Product struct { ID func(childComplexity int) int Manufacturer func(childComplexity int) int Name func(childComplexity int) int Price func(childComplexity int) int Upc func(childComplexity int) int } Query struct { TopProducts func(childComplexity int, first *int) int // contains filtered or unexported fields } // contains filtered or unexported fields }
type Config ¶
type Config struct { Resolvers ResolverRoot Directives DirectiveRoot Complexity ComplexityRoot }
type DirectiveRoot ¶
type DirectiveRoot struct { }
type EntityResolver ¶
type QueryResolver ¶
type ResolverRoot ¶
type ResolverRoot interface { Entity() EntityResolver Query() QueryResolver }
Click to show internal directories.
Click to hide internal directories.