40 lines
1.2 KiB
Go
40 lines
1.2 KiB
Go
package graph
|
|
|
|
// This file will be automatically regenerated based on the schema, any resolver implementations
|
|
// will be copied through when generating and any unknown code will be moved to the end.
|
|
// Code generated by github.com/99designs/gqlgen version v0.17.31
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/talksik/graphql-golang/graph/model"
|
|
)
|
|
|
|
// CreateTodo is the resolver for the createTodo field.
|
|
func (r *mutationResolver) CreateTodo(ctx context.Context, input model.NewTodo) (*model.Todo, error) {
|
|
newTodo := &model.Todo{
|
|
ID: fmt.Sprintf("T%d", len(r.Todos)+1),
|
|
Text: input.Text,
|
|
Done: false,
|
|
}
|
|
|
|
r.Resolver.Todos = append(r.Resolver.Todos, newTodo)
|
|
|
|
return newTodo, nil
|
|
}
|
|
|
|
// Todos is the resolver for the todos field.
|
|
func (r *queryResolver) Todos(ctx context.Context) ([]*model.Todo, error) {
|
|
return r.Resolver.Todos, nil
|
|
}
|
|
|
|
// Mutation returns MutationResolver implementation.
|
|
func (r *Resolver) Mutation() MutationResolver { return &mutationResolver{r} }
|
|
|
|
// Query returns QueryResolver implementation.
|
|
func (r *Resolver) Query() QueryResolver { return &queryResolver{r} }
|
|
|
|
type mutationResolver struct{ *Resolver }
|
|
type queryResolver struct{ *Resolver }
|