graph

package
v0.0.0-...-b8c468f Latest Latest
Warning

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

Go to latest
Published: May 22, 2023 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 {
	Location struct {
		ID func(childComplexity int) int
	}

	Mutation struct {
		SubmitReview func(childComplexity int, locationReview *model.LocationReviewInput) int
	}

	Query struct {
		LatestReviews func(childComplexity int) int
	}

	Review struct {
		Comment  func(childComplexity int) int
		ID       func(childComplexity int) int
		Location func(childComplexity int) int
		Rating   func(childComplexity int) int
	}

	SubmitReviewResponse struct {
		Code           func(childComplexity int) int
		LocationReview func(childComplexity int) int
		Message        func(childComplexity int) int
		Success        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 {
	SubmitReview(ctx context.Context, locationReview *model.LocationReviewInput) (*model.SubmitReviewResponse, error)
}

type QueryResolver

type QueryResolver interface {
	LatestReviews(ctx context.Context) ([]*model.Review, error)
}

type Resolver

type Resolver struct{}

func (*Resolver) Mutation

func (r *Resolver) Mutation() MutationResolver

Mutation returns MutationResolver implementation.

func (*Resolver) Query

func (r *Resolver) Query() QueryResolver

Query returns QueryResolver implementation.

type ResolverRoot

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

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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