generated

package
v0.0.0-...-1962235 Latest Latest
Warning

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

Go to latest
Published: Oct 6, 2023 License: Apache-2.0 Imports: 14 Imported by: 0

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 {
	Details struct {
		Forename func(childComplexity int) int
		Location func(childComplexity int) int
		Surname  func(childComplexity int) int
	}

	Employee struct {
		Details func(childComplexity int) int
		ID      func(childComplexity int) int
		Role    func(childComplexity int) int
	}

	Engineer struct {
		Department   func(childComplexity int) int
		EngineerType func(childComplexity int) int
		Title        func(childComplexity int) int
	}

	Entity struct {
		FindEmployeeByID func(childComplexity int, id int) int
	}

	Marketer struct {
		Department func(childComplexity int) int
		Title      func(childComplexity int) int
	}

	Operator struct {
		Department   func(childComplexity int) int
		OperatorType func(childComplexity int) int
		Title        func(childComplexity int) int
	}

	Query struct {
		Employee  func(childComplexity int, id int) int
		Employees func(childComplexity int) int
		TeamMates func(childComplexity int, team model.Department) int
		// contains filtered or unexported fields
	}
	// contains filtered or unexported fields
}

type Config

type Config struct {
	Resolvers  ResolverRoot
	Directives DirectiveRoot
	Complexity ComplexityRoot
}

type DirectiveRoot

type DirectiveRoot struct {
	ComposeDirective func(ctx context.Context, obj interface{}, next graphql.Resolver, name string) (res interface{}, err error)
	InterfaceObject  func(ctx context.Context, obj interface{}, next graphql.Resolver) (res interface{}, err error)
}

type EntityResolver

type EntityResolver interface {
	FindEmployeeByID(ctx context.Context, id int) (*model.Employee, error)
}

type QueryResolver

type QueryResolver interface {
	Employee(ctx context.Context, id int) (*model.Employee, error)
	Employees(ctx context.Context) ([]*model.Employee, error)
	TeamMates(ctx context.Context, team model.Department) ([]*model.Employee, error)
}

type ResolverRoot

type ResolverRoot interface {
	Entity() EntityResolver
	Query() QueryResolver
}

Jump to

Keyboard shortcuts

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