generated

package
v0.0.0-...-08a7db2 Latest Latest
Warning

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

Go to latest
Published: May 3, 2024 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 {
	Alligator struct {
		Class     func(childComplexity int) int
		Dangerous func(childComplexity int) int
		Gender    func(childComplexity int) int
		Name      func(childComplexity int) int
	}

	Cat struct {
		Class  func(childComplexity int) int
		Gender func(childComplexity int) int
		Name   func(childComplexity int) int
		Type   func(childComplexity int) int
	}

	Details struct {
		Forename      func(childComplexity int) int
		HasChildren   func(childComplexity int) int
		MaritalStatus func(childComplexity int) int
		Middlename    func(childComplexity int) int
		Nationality   func(childComplexity int) int
		Pets          func(childComplexity int) int
		Surname       func(childComplexity int) int
	}

	Dog struct {
		Breed  func(childComplexity int) int
		Class  func(childComplexity int) int
		Gender func(childComplexity int) int
		Name   func(childComplexity int) int
	}

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

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

	Mouse struct {
		Class  func(childComplexity int) int
		Gender func(childComplexity int) int
		Name   func(childComplexity int) int
	}

	Pony struct {
		Class  func(childComplexity int) int
		Gender func(childComplexity int) int
		Name   func(childComplexity int) int
	}

	Query struct {
		FindEmployees func(childComplexity int, criteria *model.SearchInput) int
		// contains filtered or unexported fields
	}
	// contains filtered or unexported fields
}

type Config

type Config struct {
	Schema     *ast.Schema
	Resolvers  ResolverRoot
	Directives DirectiveRoot
	Complexity ComplexityRoot
}

type DirectiveRoot

type DirectiveRoot struct {
}

type EntityResolver

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

type QueryResolver

type QueryResolver interface {
	FindEmployees(ctx context.Context, criteria *model.SearchInput) ([]*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