Versions in this module Expand all Collapse all v1 v1.0.1 Aug 16, 2025 v1.0.0 Aug 16, 2025 Changes in this version + func NewExecutableSchema(cfg Config) graphql.ExecutableSchema + type ComplexityRoot struct + CreateUserPayload struct{ ... } + DeleteUserPayload struct{ ... } + Error struct{ ... } + Mutation struct{ ... } + PageInfo struct{ ... } + Query struct{ ... } + UpdateUserPayload struct{ ... } + User struct{ ... } + UserConnection struct{ ... } + UserEdge struct{ ... } + type Config struct + Complexity ComplexityRoot + Directives DirectiveRoot + Resolvers ResolverRoot + Schema *ast.Schema + type DirectiveRoot struct + type MutationResolver interface + CreateUser func(ctx context.Context, input model.CreateUserInput) (*model.CreateUserPayload, error) + DeleteUser func(ctx context.Context, id string) (*model.DeleteUserPayload, error) + UpdateUser func(ctx context.Context, id string, input model.UpdateUserInput) (*model.UpdateUserPayload, error) + type QueryResolver interface + User func(ctx context.Context, id string) (*model.User, error) + Users func(ctx context.Context, first *int, after *string) (*model.UserConnection, error) + type ResolverRoot interface + Mutation func() MutationResolver + Query func() QueryResolver