generated

package
v0.0.0-...-c90bac2 Latest Latest
Warning

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

Go to latest
Published: Dec 25, 2021 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 {
	Mutation struct {
		CreateUser   func(childComplexity int, input model.NewUser) int
		LoginUser    func(childComplexity int, input model.LoginUser) int
		RefreshToken func(childComplexity int, input model.RefreshTokenData) int
	}

	Query struct {
		ParseTokenData func(childComplexity int) int
	}

	TokenData struct {
		Role     func(childComplexity int) int
		Username func(childComplexity int) int
	}

	User struct {
		CreatedAt   func(childComplexity int) int
		Email       func(childComplexity int) int
		Fullname    func(childComplexity int) int
		ID          func(childComplexity int) int
		LastLoginAt func(childComplexity int) int
		Password    func(childComplexity int) int
		Phone       func(childComplexity int) int
		Role        func(childComplexity int) int
		UpdatedAt   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 {
	CreateUser(ctx context.Context, input model.NewUser) (*model.User, error)
	LoginUser(ctx context.Context, input model.LoginUser) (string, error)
	RefreshToken(ctx context.Context, input model.RefreshTokenData) (string, error)
}

type QueryResolver

type QueryResolver interface {
	ParseTokenData(ctx context.Context) (*model.TokenData, 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