generated

package
v0.0.0-...-dc9d3bd Latest Latest
Warning

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

Go to latest
Published: Aug 8, 2021 License: MIT Imports: 11 Imported by: 0

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 {
	Mutation struct {
		CreateUser   func(childComplexity int, input model.NewUser) int
		Login        func(childComplexity int, input model.Login) int
		RefreshToken func(childComplexity int, input model.RefreshTokenInput) int
		SetPumpState func(childComplexity int, input model.PumpState) int
	}

	Pump struct {
		State func(childComplexity int) int
	}

	Query struct {
		FindUsers    func(childComplexity int) int
		GetTankLevel func(childComplexity int) int
		ViewPump     func(childComplexity int) int
	}

	Tank struct {
		Level func(childComplexity int) int
	}

	User struct {
		Email func(childComplexity int) int
		ID    func(childComplexity int) int
	}
}

type Config

type Config struct {
	Resolvers  ResolverRoot
	Directives DirectiveRoot
	Complexity ComplexityRoot
}

type DirectiveRoot

type DirectiveRoot struct {
}

type MutationResolver

type MutationResolver interface {
	CreateUser(ctx context.Context, input model.NewUser) (string, error)
	Login(ctx context.Context, input model.Login) (string, error)
	RefreshToken(ctx context.Context, input model.RefreshTokenInput) (string, error)
	SetPumpState(ctx context.Context, input model.PumpState) (*model.Pump, error)
}

type QueryResolver

type QueryResolver interface {
	ViewPump(ctx context.Context) (*model.Pump, error)
	GetTankLevel(ctx context.Context) (*model.Tank, error)
	FindUsers(ctx context.Context) ([]*model.User, error)
}

type ResolverRoot

type ResolverRoot interface {
	Mutation() MutationResolver
	Query() QueryResolver
}

Jump to

Keyboard shortcuts

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