generated

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Jul 16, 2024 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 {
	CategoriesAggregate struct {
		Count func(childComplexity int) int
		Max   func(childComplexity int) int
		Min   func(childComplexity int) int
	}

	Category struct {
		ID   func(childComplexity int) int
		Name func(childComplexity int) int
	}

	CategoryMin struct {
		ID   func(childComplexity int) int
		Name func(childComplexity int) int
	}

	Post struct {
		Categories func(childComplexity int, limit *int, offset *int, orderBy []*model.CategoryOrdering, filter *model.CategoryFilterInput) int
		ID         func(childComplexity int) int
		Name       func(childComplexity int) int
		User       func(childComplexity int) int
		UserID     func(childComplexity int) int
	}

	PostMin struct {
		ID     func(childComplexity int) int
		Name   func(childComplexity int) int
		UserID func(childComplexity int) int
	}

	PostsAggregate struct {
		Count func(childComplexity int) int
		Max   func(childComplexity int) int
		Min   func(childComplexity int) int
	}

	Query struct {
		Categories          func(childComplexity int, limit *int, offset *int, orderBy []*model.CategoryOrdering, filter *model.CategoryFilterInput) int
		CategoriesAggregate func(childComplexity int) int
		Posts               func(childComplexity int, limit *int, offset *int, orderBy []*model.PostOrdering, filter *model.PostFilterInput) int
		PostsAggregate      func(childComplexity int) int
		Users               func(childComplexity int, limit *int, offset *int, orderBy []*model.UserOrdering) int
		UsersAggregate      func(childComplexity int) int
	}

	User struct {
		ID    func(childComplexity int) int
		Name  func(childComplexity int) int
		Posts func(childComplexity int, limit *int, offset *int, orderBy []*model.PostOrdering, filter *model.PostFilterInput) int
	}

	UserMin struct {
		ID   func(childComplexity int) int
		Name func(childComplexity int) int
	}

	UsersAggregate struct {
		Count func(childComplexity int) int
		Max   func(childComplexity int) int
		Min   func(childComplexity int) int
	}
	// contains filtered or unexported fields
}

type Config

type Config struct {
	Schema     *ast.Schema
	Resolvers  ResolverRoot
	Directives DirectiveRoot
	Complexity ComplexityRoot
}

type DirectiveRoot

type DirectiveRoot struct {
	FastgqlField func(ctx context.Context, obj interface{}, next graphql.Resolver, skipSelect *bool) (res interface{}, err error)
}

type QueryResolver

type QueryResolver interface {
	Posts(ctx context.Context, limit *int, offset *int, orderBy []*model.PostOrdering, filter *model.PostFilterInput) ([]*model.Post, error)
	Users(ctx context.Context, limit *int, offset *int, orderBy []*model.UserOrdering) ([]*model.User, error)
	Categories(ctx context.Context, limit *int, offset *int, orderBy []*model.CategoryOrdering, filter *model.CategoryFilterInput) ([]*model.Category, error)
	PostsAggregate(ctx context.Context) (*model.PostsAggregate, error)
	UsersAggregate(ctx context.Context) (*model.UsersAggregate, error)
	CategoriesAggregate(ctx context.Context) (*model.CategoriesAggregate, error)
}

type ResolverRoot

type ResolverRoot interface {
	Query() QueryResolver
}

Jump to

Keyboard shortcuts

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