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