You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/tutorial/ordering.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
**Django Ninja Extra** provides an intuitive ordering model using `ordering` decoration from the Django-Ninja-Extra ordering module. It expects a Queryset from as a route function result.
4
4
5
-
> This feature was inspired by the [DRF OrderingFilter][drf-ordering]
5
+
> This feature was inspired by the [DRF OrderingFilter](https://www.django-rest-framework.org/api-guide/filtering/#orderingfilter)
Copy file name to clipboardExpand all lines: docs/tutorial/searching.md
+2-5Lines changed: 2 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
**Django Ninja Extra** provides an intuitive searching model using `searching` decoration from the Django-Ninja-Extra searching module. It expects a Queryset from as a route function result.
4
4
5
-
> This feature was inspired by the [DRF SearchFilter][drf-search]
5
+
> This feature was inspired by the [DRF SearchFilter](https://www.django-rest-framework.org/api-guide/filtering/#searchfilter)
6
6
7
7
## **Properties**
8
8
@@ -36,7 +36,7 @@ NINJA_EXTRA={
36
36
37
37
* '^' Starts-with search.
38
38
* '=' Exact matches.
39
-
* '@' Full-text search. (Currently only supported Django's [PostgreSQL backend][postgres-search].)
39
+
* '@' Full-text search. (Currently only supported Django's [PostgreSQL backend](https://docs.djangoproject.com/en/stable/ref/contrib/postgres/search/).)
0 commit comments