generated

package
v0.0.0-...-c19fc54 Latest Latest
Warning

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

Go to latest
Published: May 18, 2021 License: MIT Imports: 12 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 {
	Author struct {
		BookID    func(childComplexity int) int
		Firstname func(childComplexity int) int
		ID        func(childComplexity int) int
		Lastname  func(childComplexity int) int
	}

	Book struct {
		Author   func(childComplexity int) int
		Category func(childComplexity int) int
		ID       func(childComplexity int) int
		Name     func(childComplexity int) int
	}

	Mutation struct {
		AddBook  func(childComplexity int, input *model.NewBook, author []*model.NewAuthor) int
		EditBook func(childComplexity int, id *int, input *model.NewBook, author []*model.NewAuthor) int
	}

	Query struct {
		Authors func(childComplexity int, search *string) int
		Books   func(childComplexity int, search *string) int
		Exists  func(childComplexity int, input model.NewAuthor) int
	}
}

type Config

type Config struct {
	Resolvers  ResolverRoot
	Directives DirectiveRoot
	Complexity ComplexityRoot
}

type DirectiveRoot

type DirectiveRoot struct {
}

type MutationResolver

type MutationResolver interface {
	AddBook(ctx context.Context, input *model.NewBook, author []*model.NewAuthor) (*models.Book, error)
	EditBook(ctx context.Context, id *int, input *model.NewBook, author []*model.NewAuthor) (*models.Book, error)
}

type QueryResolver

type QueryResolver interface {
	Books(ctx context.Context, search *string) ([]*models.Book, error)
	Authors(ctx context.Context, search *string) ([]*models.Author, error)
	Exists(ctx context.Context, input model.NewAuthor) (bool, error)
}

type ResolverRoot

type ResolverRoot interface {
	Mutation() MutationResolver
	Query() QueryResolver
}

Jump to

Keyboard shortcuts

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