generated

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

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

Go to latest
Published: Aug 22, 2020 License: MIT Imports: 11 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 {
	LikedResponse struct {
		Matched func(childComplexity int) int
		Success func(childComplexity int) int
	}

	Mutation struct {
		LikeUser func(childComplexity int, userID string) int
		Login    func(childComplexity int, email string, password string) int
		Signup   func(childComplexity int, input model.NewUser) int
	}

	Query struct {
		Matches func(childComplexity int) int
		Me      func(childComplexity int) int
	}

	User struct {
		Email    func(childComplexity int) int
		ID       func(childComplexity int) int
		Name     func(childComplexity int) int
		Password func(childComplexity int) int
		UID      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 {
	Login(ctx context.Context, email string, password string) (*model.User, error)
	Signup(ctx context.Context, input model.NewUser) (*model.User, error)
	LikeUser(ctx context.Context, userID string) (*model.LikedResponse, error)
}

type QueryResolver

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