generated

package
v0.0.0-...-9262b35 Latest Latest
Warning

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

Go to latest
Published: Feb 8, 2022 License: MIT Imports: 14 Imported by: 10

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 {
	EmailHost struct {
		ID func(childComplexity int) int
	}

	Entity struct {
		FindProductByManufacturerIDAndID func(childComplexity int, manufacturerID string, id string) int
		FindUserByID                     func(childComplexity int, id string) int
	}

	Manufacturer struct {
		ID func(childComplexity int) int
	}

	Product struct {
		ID           func(childComplexity int) int
		Manufacturer func(childComplexity int) int
		Reviews      func(childComplexity int) int
	}

	Query struct {
		// contains filtered or unexported fields
	}

	Review struct {
		Author  func(childComplexity int) int
		Body    func(childComplexity int) int
		Product func(childComplexity int) int
	}

	User struct {
		Email   func(childComplexity int) int
		Host    func(childComplexity int) int
		ID      func(childComplexity int) int
		Reviews 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 {
}

type EntityResolver

type EntityResolver interface {
	FindProductByManufacturerIDAndID(ctx context.Context, manufacturerID string, id string) (*model.Product, error)
	FindUserByID(ctx context.Context, id string) (*model.User, error)
}

type ResolverRoot

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

type UserResolver

type UserResolver interface {
	Reviews(ctx context.Context, obj *model.User) ([]*model.Review, error)
}

Jump to

Keyboard shortcuts

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