selection

package
v0.0.0-...-e1ef86e Latest Latest
Warning

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

Go to latest
Published: Apr 22, 2024 License: MIT Imports: 13 Imported by: 1

README

selection app

This is the simplest example of a graphql server.

to run this server

go run ./server/server.go

and open http://localhost:8086 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

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 Event

type Event interface {
	IsEvent()
	GetSelection() []string
	GetCollected() []string
}

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 (this Like) GetCollected() []string

func (Like) GetSelection

func (this Like) GetSelection() []string

func (Like) IsEvent

func (Like) IsEvent()

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 (this Post) GetCollected() []string

func (Post) GetSelection

func (this Post) GetSelection() []string

func (Post) IsEvent

func (Post) IsEvent()

type Query

type Query struct {
}

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