Versions in this module Expand all Collapse all v0 v0.6.1 Apr 10, 2023 v0.6.0 Nov 24, 2021 Changes in this version + func NewExecutableSchema(cfg Config) graphql.ExecutableSchema + type ComplexityRoot struct + Mutation struct{ ... } + Query struct{ ... } + TodoItem struct{ ... } + type Config struct + Complexity ComplexityRoot + Directives DirectiveRoot + Resolvers ResolverRoot + type DirectiveRoot struct + type MutationResolver interface + AddTodoItem func(ctx context.Context, input todo.NewItem) (*todo.Item, error) + UpdateTodoItem func(ctx context.Context, input TodoItemUpdate) (*todo.Item, error) + type QueryResolver interface + TodoItems func(ctx context.Context) ([]todo.Item, error) + type ResolverRoot interface + Mutation func() MutationResolver + Query func() QueryResolver + type TodoItemUpdate struct + Completed *bool + ID string + Order *int + Title *string