Skip to content

Commit

Permalink
chore: no need for absinthe_plug dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Jul 31, 2023
1 parent 0311724 commit 8e898e7
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions documentation/tutorials/getting-started-with-graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,17 @@

If you haven't already, read the [Ash Getting Started Guide](https://hexdocs.pm/ash/get-started.html). This assumes that you already have resources set up, and only gives you the steps to _add_ AshGraphql to your resources/apis.

## Bring in the ash_graphql, and absinthe_plug dependencies
## Bring in the ash_graphql dependency

```elixir
def deps()
[
...
{:ash_graphql, "~> 0.25.13"},
{:absinthe_plug, "~> x.x"}
{:ash_graphql, "~> 0.25.13"}
]
end
```

Use `mix hex.info ash_graphql` and `mix hex.info absinthe_plug` to quickly find the latest versions.

## Add some backwards compatibility configuration

in `config/config.exs`
Expand Down

0 comments on commit 8e898e7

Please sign in to comment.