Documentation
¶
Index ¶
- Variables
- func NewExecutableSchema(cfg Config) graphql.ExecutableSchema
- type ComplexityRoot
- type Config
- type DirectiveRoot
- type EntityRepresentation
- type EntityResolver
- type EntityWithIndex
- type MutationResolver
- type ProductResolver
- type QueryResolver
- type ResolverRoot
- type ReviewResolver
- type UserResolver
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 {
Cat struct {
Name func(childComplexity int) int
}
DetatchedQuestion struct {
Body func(childComplexity int) int
Upc func(childComplexity int) int
}
Entity struct {
FindProductByUpc func(childComplexity int, upc string) int
FindUserByID func(childComplexity int, id string) int
}
Mutation struct {
AddReview func(childComplexity int, authorID string, upc string, review string) int
}
OtherQuestion struct {
Body func(childComplexity int) int
Upc func(childComplexity int) int
}
Product struct {
Reviews func(childComplexity int) int
Upc func(childComplexity int) int
}
Query struct {
Cat func(childComplexity int) int
Me func(childComplexity int) int
// contains filtered or unexported fields
}
Question struct {
Body func(childComplexity int) int
Subject func(childComplexity int) int
Upc func(childComplexity int) int
}
Rating struct {
Body func(childComplexity int) int
Score func(childComplexity int) int
Upc func(childComplexity int) int
}
Review struct {
Attachments func(childComplexity int) int
Author func(childComplexity int) int
Body func(childComplexity int) int
Comment func(childComplexity int) int
Product func(childComplexity int) int
}
User struct {
ID func(childComplexity int) int
RealName func(childComplexity int) int
Reviews func(childComplexity int) int
Username func(childComplexity int) int
}
Video struct {
Size func(childComplexity int) int
Subject func(childComplexity int) int
Upc 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 ¶ added in v1.6.0
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 ¶ added in v1.6.0
type EntityWithIndex struct {
// contains filtered or unexported fields
}
type MutationResolver ¶
type ProductResolver ¶
type QueryResolver ¶
type ResolverRoot ¶
type ResolverRoot interface {
Entity() EntityResolver
Mutation() MutationResolver
Product() ProductResolver
Query() QueryResolver
Review() ReviewResolver
User() UserResolver
}
type ReviewResolver ¶
Click to show internal directories.
Click to hide internal directories.