generated

package
v0.0.0-...-190fc14 Latest Latest
Warning

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

Go to latest
Published: Jul 5, 2022 License: GPL-3.0 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 {
		Login  func(childComplexity int, input model.UserInput) int
		SignUp func(childComplexity int, input model.UserInput) int
	}

	Query struct {
	}

	Tokens struct {
		Access  func(childComplexity int) int
		Refresh 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 {
	SignUp(ctx context.Context, input model.UserInput) (string, error)
	Login(ctx context.Context, input model.UserInput) (*model.Tokens, error)
}

type ResolverRoot

type ResolverRoot interface {
	Mutation() MutationResolver
}

Jump to

Keyboard shortcuts

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