generated

package
v0.0.0-...-72cdbf8 Latest Latest
Warning

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

Go to latest
Published: Oct 9, 2020 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 {
	Mutation struct {
		DeleteUser func(childComplexity int, id primitive.ObjectID, confirmDelete bool) int
		LogInUser  func(childComplexity int, email string, password string) int
		LogOutUser func(childComplexity int) int
		SignUpUser func(childComplexity int, input *model.NewUser) int
	}

	Query struct {
		Me    func(childComplexity int) int
		Users 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
		UserName 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 {
	SignUpUser(ctx context.Context, input *model.NewUser) (*model.User, error)
	LogInUser(ctx context.Context, email string, password string) (*model.User, error)
	LogOutUser(ctx context.Context) (bool, error)
	DeleteUser(ctx context.Context, id primitive.ObjectID, confirmDelete bool) (bool, error)
}

type QueryResolver

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