Skip to content

Commit

Permalink
Update django.md (#2996)
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinfeser authored Aug 2, 2023
1 parent 2c41d7e commit 064a56d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/integrations/django.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ urlpatterns = [
Strawberry only provides a GraphQL view for Django, [Strawberry GraphQL Django](https://github.com/strawberry-graphql/strawberry-graphql-django) provides integration with the models.
`import strawberry_django` should do the same as `import strawberry.django` if both libraries are installed.

You'd also need to add `strawberry.django` to the `INSTALLED_APPS` of your
You'd also need to add `strawberry_django` to the `INSTALLED_APPS` of your
project, this is needed to provide the template for the GraphiQL interface.

## Options
Expand Down Expand Up @@ -161,7 +161,7 @@ urlpatterns = [
]
```

You'd also need to add `strawberry.django` to the `INSTALLED_APPS` of your
You'd also need to add `strawberry_django` to the `INSTALLED_APPS` of your
project, this is needed to provide the template for the GraphiQL interface.

## Options
Expand Down

0 comments on commit 064a56d

Please sign in to comment.