graph

package
v0.0.0-...-ecf25e1 Latest Latest
Warning

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

Go to latest
Published: Aug 3, 2024 License: Apache-2.0 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 BookResolver

type BookResolver interface {
	Authors(ctx context.Context, obj *model.Book) ([]*model.Person, error)

	Editors(ctx context.Context, obj *model.Book) ([]*model.Person, error)
}

type ComplexityRoot

type ComplexityRoot struct {
	Book struct {
		AuthorIDs func(childComplexity int) int
		Authors   func(childComplexity int) int
		EditorIDs func(childComplexity int) int
		Editors   func(childComplexity int) int
		ID        func(childComplexity int) int
		Title     func(childComplexity int) int
	}

	Person struct {
		ID   func(childComplexity int) int
		Name func(childComplexity int) int
	}

	Query struct {
		Book   func(childComplexity int, id string) int
		Person func(childComplexity int, id string) int
	}
}

type Config

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

type DirectiveRoot

type DirectiveRoot struct {
}

type QueryResolver

type QueryResolver interface {
	Person(ctx context.Context, id string) (*model.Person, error)
	Book(ctx context.Context, id string) (*model.Book, error)
}

type Resolver

type Resolver struct {
	People personLoader
	Books  bookLoader
}

func (*Resolver) Book

func (r *Resolver) Book() BookResolver

Book returns BookResolver implementation.

func (*Resolver) Query

func (r *Resolver) Query() QueryResolver

Query returns QueryResolver implementation.

type ResolverRoot

type ResolverRoot interface {
	Book() BookResolver
	Query() QueryResolver
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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