Skip to content

Commit

Permalink
Mention math.rand for the todo ID (99designs#1489)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelJCompton authored and kevinmbeaulieu committed Apr 6, 2021
1 parent 1f45cea commit a62216d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ type Resolver struct{
}
```

Returning to `graph/schema.resolvers.go`, let's implement the bodies of those automatically generated resolver functions:
Returning to `graph/schema.resolvers.go`, let's implement the bodies of those automatically generated resolver functions. For `CreateTodo`, we'll use `math.rand` to simply return a todo with a randomly generated ID and store that in the in-memory todos list --- in a real app, you're likely to use a database or some other backend service.

```go
func (r *mutationResolver) CreateTodo(ctx context.Context, input model.NewTodo) (*model.Todo, error) {
Expand Down

0 comments on commit a62216d

Please sign in to comment.