Skip to content

Commit

Permalink
Fix many links
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick91 committed Aug 1, 2024
1 parent 989e6bf commit d73eb91
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/guide/fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Fruit2:
> [!TIP]
> For choices using
> [Django's TextChoices/IntegerChoices](https://docs.djangoproject.com/en/4.2/ref/models/fields/#enumeration-types)
> it is recommented using the [django-choices-field](/integrations/choices-field) integration
> it is recommented using the [django-choices-field](../integrations/choices-field.md) integration
> enum handling.
## Relationships
Expand All @@ -56,7 +56,7 @@ class Color:
```

Note that all relations can naturally trigger the n+1 problem. To avoid that, you can either
enable the [Optimizer Extension](../optimizer) which will automatically
enable the [Optimizer Extension](./optimizer.md) which will automatically
solve some general issues for you, or even use
[Data Loaders](https://strawberry.rocks/docs/guides/dataloaders) for more complex
situations.
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ input FruitFilter {
> [!TIP]
> If you are using the [relay integration](relay.md) and working with types inheriting
> from `relay.Node` and `GlobalID` for identifying objects, you might want to set
> `MAP_AUTO_ID_AS_GLOBAL_ID=True` in your [strawberry django settings](../settings)
> `MAP_AUTO_ID_AS_GLOBAL_ID=True` in your [strawberry django settings](./settings.md)
> to make sure `auto` fields gets mapped to `GlobalID` on types and filters.

## AND, OR, NOT, DISTINCT ...
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/mutations.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Here are the differences between those:
- Strawberry Django's mutation will be sure that the mutation is executed in an async safe
environment, meaning that if you are running ASGI and you define a `sync` resolver, it will
automatically be wrapped in a `sync_to_async` call.
- It will better integrate with the [permissioning integration](../permissions)
- It will better integrate with the [permission integration](./permissions.md)
- It has an option to automatically handle common django errors and return them
in a standardized way (more on that below)

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/pagination.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ There is not default limit defined. All elements are returned if no pagination l
## Relay pagination

For more complex scenarios, a cursor pagination would be better. For this,
use the [relay integration](../relay) to define those.
use the [relay integration](./relay.md) to define those.
2 changes: 1 addition & 1 deletion docs/integrations/guardian.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ title: django-guardian
This lib provides integration for per-object-permissions using
[django-guardian](https://django-guardian.readthedocs.io/en/stable/).

Check the [Permission Extension Guide](/references/permissions) for more information
Check the [Permission Extension Guide](../guide/permissions.md) for more information
on how to use it.

0 comments on commit d73eb91

Please sign in to comment.