Skip to content

Commit 716aa8f

Browse files
author
Adam Charnock
committed
Adding links to the cookbook example app (links should work upon merge)
1 parent a881aa9 commit 716aa8f

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

docs/pages/docs/filtering.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,19 @@ to provide filtering of results. See the
1010
[usage documentation](https://django-filter.readthedocs.org/en/latest/usage.html#the-filter)
1111
for details on the format for `filter_fields`.
1212

13-
**Note 1:** This filtering is only available when using the Django integrations
14-
(i.e. nodes which extend `DjangoNode`)
15-
16-
**Note 2:** `django-filter` is an optional dependency of Graphene. You will need to
13+
This filtering is only available when using the Django integrations
14+
(i.e. nodes which extend `DjangoNode`). Additionally `django-filter`
15+
is an optional dependency of Graphene. You will need to
1716
install it manually, which can be done as follows:
1817

1918
```bash
19+
# You'll need to django-filter
2020
pip install django-filter
2121
```
2222

23+
**Note: The techniques below are demoed in the
24+
[cookbook example app](https://github.com/graphql-python/graphene/tree/feature/django/examples/cookbook).**
25+
2326
## Filterable fields
2427

2528
The `filter_fields` parameter is used to specify the fields which can be filtered upon.

docs/pages/docs/quickstart-django.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ Django's getting started page.
1313

1414
First let's create a few simple models...
1515

16+
**Note: The code in this quickstart is pulled from the
17+
[cookbook example app](https://github.com/graphql-python/graphene/tree/feature/django/examples/cookbook)**.
18+
1619
## Defining our models
1720

1821
Before continuing, create the following:

0 commit comments

Comments
 (0)