generated

package
v0.0.0-...-2952f12 Latest Latest
Warning

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

Go to latest
Published: Apr 10, 2024 License: MIT 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 {
	Book struct {
		InStock      func(childComplexity int) int
		IsCheckedOut func(childComplexity int) int
		Isbn         func(childComplexity int) int
	}

	Entity struct {
		FindBookByIsbn     func(childComplexity int, isbn string) int
		FindFurnitureBySku func(childComplexity int, sku string) int
		FindUserByID       func(childComplexity int, id string) int
	}

	Furniture struct {
		InStock func(childComplexity int) int
		IsHeavy func(childComplexity int) int
		Sku     func(childComplexity int) int
	}

	Query struct {
		// contains filtered or unexported fields
	}

	User struct {
		GoodDescription func(childComplexity int) int
		ID              func(childComplexity int) int
		Metadata        func(childComplexity int) int
	}

	UserMetadata struct {
		Description func(childComplexity int) int
	}
	// contains filtered or unexported fields
}

type Config

type Config struct {
	Resolvers  ResolverRoot
	Directives DirectiveRoot
	Complexity ComplexityRoot
}

type DirectiveRoot

type DirectiveRoot struct {
	Stream    func(ctx context.Context, obj interface{}, next graphql.Resolver) (res interface{}, err error)
	Transform func(ctx context.Context, obj interface{}, next graphql.Resolver, from string) (res interface{}, err error)
}

type EntityResolver

type EntityResolver interface {
	FindBookByIsbn(ctx context.Context, isbn string) (*model.Book, error)
	FindFurnitureBySku(ctx context.Context, sku string) (*model.Furniture, error)
	FindUserByID(ctx context.Context, id string) (*model.User, error)
}

type ResolverRoot

type ResolverRoot interface {
	Entity() EntityResolver
	User() UserResolver
}

type UserResolver

type UserResolver interface {
	GoodDescription(ctx context.Context, obj *model.User) (*bool, error)
}

Jump to

Keyboard shortcuts

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