generated

package
v0.0.0-...-e814e27 Latest Latest
Warning

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

Go to latest
Published: Dec 26, 2021 License: MIT Imports: 14 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 {
	EmailHost struct {
		ID   func(childComplexity int) int
		Name func(childComplexity int) int
	}

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

	Query struct {
		Me func(childComplexity int) int
		// contains filtered or unexported fields
	}

	User struct {
		Email    func(childComplexity int) int
		Host     func(childComplexity int) int
		ID       func(childComplexity int) int
		Username 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 {
	FindEmailHostByID(ctx context.Context, id string) (*model.EmailHost, error)
	FindUserByID(ctx context.Context, id string) (*model.User, error)
}

type QueryResolver

type QueryResolver interface {
	Me(ctx context.Context) (*model.User, 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