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 BookResolver ¶
type ComplexityRoot ¶
type ComplexityRoot struct { Book struct { AuthorIDs func(childComplexity int) int Authors func(childComplexity int) int EditorIDs func(childComplexity int) int Editors func(childComplexity int) int ID func(childComplexity int) int Title func(childComplexity int) int } Person struct { ID func(childComplexity int) int Name func(childComplexity int) int } Query struct { Book func(childComplexity int, id string) int Person func(childComplexity int, id string) int } }
type Config ¶
type Config struct { Schema *ast.Schema Resolvers ResolverRoot Directives DirectiveRoot Complexity ComplexityRoot }
type DirectiveRoot ¶
type DirectiveRoot struct { }
type QueryResolver ¶
type Resolver ¶
type Resolver struct { People personLoader Books bookLoader }
func (*Resolver) Book ¶
func (r *Resolver) Book() BookResolver
Book returns BookResolver implementation.
func (*Resolver) Query ¶
func (r *Resolver) Query() QueryResolver
Query returns QueryResolver implementation.
type ResolverRoot ¶
type ResolverRoot interface { Book() BookResolver Query() QueryResolver }
Click to show internal directories.
Click to hide internal directories.