selection

package
v0.7.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 5, 2019 License: MIT Imports: 11 Imported by: 0

README

todo app

This is the simplest example of a graphql server.

to run this server

go run ./example/todo/server/server.go

and open http://localhost:8081 in your browser

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 added in v0.5.0

type ComplexityRoot struct {
	Like struct {
		Reaction  func(childComplexity int) int
		Sent      func(childComplexity int) int
		Selection func(childComplexity int) int
		Collected func(childComplexity int) int
	}

	Post struct {
		Message   func(childComplexity int) int
		Sent      func(childComplexity int) int
		Selection func(childComplexity int) int
		Collected func(childComplexity int) int
	}

	Query struct {
		Events func(childComplexity int) int
	}
}

type Config

type Config struct {
	Resolvers  ResolverRoot
	Directives DirectiveRoot
	Complexity ComplexityRoot
}

type DirectiveRoot

type DirectiveRoot struct {
}

type Event

type Event interface {
	IsEvent()
}

type Like

type Like struct {
	Reaction  string    `json:"reaction"`
	Sent      time.Time `json:"sent"`
	Selection []string  `json:"selection"`
	Collected []string  `json:"collected"`
}

func (Like) IsEvent added in v0.6.0

func (Like) IsEvent()

type Post

type Post struct {
	Message   string    `json:"message"`
	Sent      time.Time `json:"sent"`
	Selection []string  `json:"selection"`
	Collected []string  `json:"collected"`
}

func (Post) IsEvent added in v0.6.0

func (Post) IsEvent()

type QueryResolver

type QueryResolver interface {
	Events(ctx context.Context) ([]Event, error)
}

type Resolver

type Resolver struct{}

func (*Resolver) Query

func (r *Resolver) Query() QueryResolver

type ResolverRoot

type ResolverRoot interface {
	Query() QueryResolver
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL