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 {
Entity struct {
FindUserByID func(childComplexity int, id string) int
}
Product struct {
Upc func(childComplexity int) int
}
Purchase struct {
Product func(childComplexity int) int
Wallet func(childComplexity int) int
}
Query struct {
Me func(childComplexity int) int
// contains filtered or unexported fields
}
Sale struct {
Product func(childComplexity int) int
Rating func(childComplexity int) int
}
User struct {
History func(childComplexity int) int
ID func(childComplexity int) int
Username func(childComplexity int) int
}
WalletType1 struct {
Amount func(childComplexity int) int
Currency func(childComplexity int) int
SpecialField1 func(childComplexity int) int
}
WalletType2 struct {
Amount func(childComplexity int) int
Currency func(childComplexity int) int
SpecialField2 func(childComplexity int) int
}
// contains filtered or unexported fields
}
type Config ¶
type Config struct {
Resolvers ResolverRoot
Directives DirectiveRoot
Complexity ComplexityRoot
}
type DirectiveRoot ¶
type DirectiveRoot struct {
}
type EntityResolver ¶
type ResolverRoot ¶
type ResolverRoot interface {
Entity() EntityResolver
Query() QueryResolver
}
Click to show internal directories.
Click to hide internal directories.