generated

package
v0.0.0-...-c1ac247 Latest Latest
Warning

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

Go to latest
Published: Apr 10, 2024 License: MIT Imports: 10 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 {
	Mutation struct {
		UpdateUserMobile func(childComplexity int, data model.UpdateUserMobileInput) int
	}

	Query struct {
		BySex func(childComplexity int, sex string) int
	}

	User struct {
		ID     func(childComplexity int) int
		Mobile func(childComplexity int) int
		Name   func(childComplexity int) int
		Sex    func(childComplexity int) int
	}
}

type Config

type Config struct {
	Resolvers  ResolverRoot
	Directives DirectiveRoot
	Complexity ComplexityRoot
}

type DirectiveRoot

type DirectiveRoot struct {
}

type MutationResolver

type MutationResolver interface {
	UpdateUserMobile(ctx context.Context, data model.UpdateUserMobileInput) (*model.User, error)
}

type QueryResolver

type QueryResolver interface {
	BySex(ctx context.Context, sex string) ([]*model.User, 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