diff --git a/docs/content/getting-started.md b/docs/content/getting-started.md index 430674f2321..d7d824ae0d4 100644 --- a/docs/content/getting-started.md +++ b/docs/content/getting-started.md @@ -42,11 +42,13 @@ To automatically add the dependency to your `go.mod` run go mod tidy ``` -If you want to specify a particular version of gqlgen, you can use `go get`. For example +By default you'll be using the latest version of gqlgen, but if you want to specify a particular version you can use `go get` (replacing `VERSION` with the particular version desired) ```shell -go get -d github.com/99designs/gqlgen +go get -d github.com/99designs/gqlgen@VERSION ``` + + ## Building the server ### Create the project skeleton