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 ComplexityRoot ¶
type ComplexityRoot struct {
Like struct {
Collected func(childComplexity int) int
Reaction func(childComplexity int) int
Selection func(childComplexity int) int
Sent func(childComplexity int) int
}
Post struct {
Collected func(childComplexity int) int
Message func(childComplexity int) int
Selection func(childComplexity int) int
Sent func(childComplexity int) int
}
Query struct {
Events func(childComplexity int) int
}
}
type Config ¶
type Config struct {
Schema *ast.Schema
Resolvers ResolverRoot
Directives DirectiveRoot
Complexity ComplexityRoot
}
type DirectiveRoot ¶
type DirectiveRoot struct {
}
type Like ¶
type Like struct {
Reaction string `json:"reaction"`
Sent time.Time `json:"sent"`
Selection []string `json:"selection,omitempty"`
Collected []string `json:"collected,omitempty"`
}
func (Like) GetCollected ¶
func (Like) GetSelection ¶
type Post ¶
type Post struct {
Message string `json:"message"`
Sent time.Time `json:"sent"`
Selection []string `json:"selection,omitempty"`
Collected []string `json:"collected,omitempty"`
}
func (Post) GetCollected ¶
func (Post) GetSelection ¶
type Resolver ¶
type Resolver struct{}
func (*Resolver) Query ¶
func (r *Resolver) Query() QueryResolver
type ResolverRoot ¶
type ResolverRoot interface {
Query() QueryResolver
}
Click to show internal directories.
Click to hide internal directories.