Documentation ¶
Overview ¶
This file will not be regenerated automatically.
It serves as dependency injection for your app, add any dependencies you require here.
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 { EmailHost struct { ID func(childComplexity int) int Name func(childComplexity int) int } Entity struct { FindEmailHostByID func(childComplexity int, id string) int FindUserByID func(childComplexity int, id string) int } Query struct { Me func(childComplexity int) int // contains filtered or unexported fields } User struct { Email func(childComplexity int) int Host func(childComplexity int) int ID func(childComplexity int) int Username func(childComplexity int) int } // contains filtered or unexported fields }
type Config ¶
type Config struct { Schema *ast.Schema Resolvers ResolverRoot Directives DirectiveRoot Complexity ComplexityRoot }
type DirectiveRoot ¶
type DirectiveRoot struct { }
type EntityRepresentation ¶
EntityRepresentation is the JSON representation of an entity sent by the Router used as the inputs for us to resolve.
We make it a map because we know the top level JSON is always an object.
type EntityResolver ¶
type EntityWithIndex ¶
type EntityWithIndex struct {
// contains filtered or unexported fields
}
type Resolver ¶
type Resolver struct{}
func (*Resolver) Entity ¶
func (r *Resolver) Entity() EntityResolver
Entity returns EntityResolver implementation.
func (*Resolver) HostForUserID ¶
func (*Resolver) Query ¶
func (r *Resolver) Query() QueryResolver
Query returns QueryResolver implementation.
func (*Resolver) User ¶
func (r *Resolver) User() UserResolver
User returns UserResolver implementation.
type ResolverRoot ¶
type ResolverRoot interface { Entity() EntityResolver Query() QueryResolver User() UserResolver }
Source Files ¶
Click to show internal directories.
Click to hide internal directories.