accounts

package
v0.0.0-...-9fab475 Latest Latest
Warning

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

Go to latest
Published: Oct 18, 2021 License: MIT Imports: 13 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 {
	Entity struct {
		FindProductByUpc func(childComplexity int, upc string) int
	}

	Product struct {
		Name   func(childComplexity int) int
		Price  func(childComplexity int) int
		Upc    func(childComplexity int) int
		Weight func(childComplexity int) int
	}

	Query struct {
		TopProducts func(childComplexity int, first *int) int
		// contains filtered or unexported fields
	}

	Service struct {
		SDL func(childComplexity int) int
	}
}

type Config

type Config struct {
	Resolvers  ResolverRoot
	Directives DirectiveRoot
	Complexity ComplexityRoot
}

type DirectiveRoot

type DirectiveRoot struct {
}

type EntityResolver

type EntityResolver interface {
	FindProductByUpc(ctx context.Context, upc string) (*Product, error)
}

type Product

type Product struct {
	Upc    string  `json:"upc"`
	Name   *string `json:"name"`
	Price  *int    `json:"price"`
	Weight *int    `json:"weight"`
}

func (Product) IsEntity

func (Product) IsEntity()

type QueryResolver

type QueryResolver interface {
	TopProducts(ctx context.Context, first *int) ([]*Product, error)
}

type ResolverRoot

type ResolverRoot interface {
	Entity() EntityResolver
	Query() QueryResolver
}

func NewResolver

func NewResolver() ResolverRoot

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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