Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrUnknownType = errors.New("unknown type") ErrTypeNotFound = errors.New("type not found") )
Functions ¶
func NewExecutableSchema ¶
func NewExecutableSchema(cfg Config) graphql.ExecutableSchema
NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface.
Types ¶
type ComplexityRoot ¶
type ComplexityRoot struct { Employee struct { Hobbies func(childComplexity int) int ID func(childComplexity int) int } Entity struct { FindEmployeeByID func(childComplexity int, id int) int } Exercise struct { Category func(childComplexity int) int } Flying struct { PlaneModels func(childComplexity int) int YearsOfExperience func(childComplexity int) int } Gaming struct { Genres func(childComplexity int) int Name func(childComplexity int) int YearsOfExperience func(childComplexity int) int } Other struct { Name func(childComplexity int) int } Programming struct { Languages func(childComplexity int) int } Query struct { // contains filtered or unexported fields } Travelling struct { CountriesLived func(childComplexity int) int } // contains filtered or unexported fields }
type Config ¶
type Config struct { Resolvers ResolverRoot Directives DirectiveRoot Complexity ComplexityRoot }
type DirectiveRoot ¶
type EntityResolver ¶
type ResolverRoot ¶
type ResolverRoot interface {
Entity() EntityResolver
}
Click to show internal directories.
Click to hide internal directories.