Versions in this module Expand all Collapse all v0 v0.3.1 Dec 8, 2025 v0.3.0 Jul 16, 2024 Changes in this version + func NewExecutableSchema(cfg Config) graphql.ExecutableSchema + type ComplexityRoot struct + CategoriesAggregate struct{ ... } + Category struct{ ... } + CategoryMin struct{ ... } + Mutation struct{ ... } + Post struct{ ... } + PostMin struct{ ... } + PostsAggregate struct{ ... } + PostsPayload struct{ ... } + Query struct{ ... } + User struct{ ... } + UserMin struct{ ... } + UsersAggregate struct{ ... } + type Config struct + Complexity ComplexityRoot + Directives DirectiveRoot + Resolvers ResolverRoot + Schema *ast.Schema + type DirectiveRoot struct + FastgqlField func(ctx context.Context, obj interface{}, next graphql.Resolver, skipSelect *bool) (res interface{}, err error) + Typename func(ctx context.Context, obj interface{}, next graphql.Resolver, name string) (res interface{}, err error) + type MutationResolver interface + CreatePosts func(ctx context.Context, inputs []*model.CreatePostInput) (*model.PostsPayload, error) + DeletePosts func(ctx context.Context, cascade *bool, filter *model1.PostFilterInput) (*model.PostsPayload, error) + UpdatePosts func(ctx context.Context, input model.UpdatePostInput, ...) (*model.PostsPayload, error) + type QueryResolver interface + Categories func(ctx context.Context, limit *int, offset *int, ...) ([]*model1.Category, error) + CategoriesAggregate func(ctx context.Context, groupBy []model1.CategoryGroupBy, ...) ([]*model1.CategoriesAggregate, error) + Posts func(ctx context.Context, limit *int, offset *int, orderBy []*model1.PostOrdering, ...) ([]*model1.Post, error) + PostsAggregate func(ctx context.Context, groupBy []model1.PostGroupBy, ...) ([]*model1.PostsAggregate, error) + Users func(ctx context.Context, limit *int, offset *int, orderBy []*model1.UserOrdering, ...) ([]*model1.User, error) + UsersAggregate func(ctx context.Context, groupBy []model1.UserGroupBy, ...) ([]*model1.UsersAggregate, error) + type ResolverRoot interface + Mutation func() MutationResolver + Query func() QueryResolver