We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4438543 commit 06cf77aCopy full SHA for 06cf77a
README.md
@@ -1,6 +1,6 @@
1
[](https://travis-ci.org/variable/django-rest-framework-queryset)
2
# Django Rest Framework QuerySet
3
-Mimicking the Django ORM queryset over rest framework api
+Mimicking the Django ORM queryset over rest framework api, which does lazy loading.
4
5
## Usage:
6
@@ -10,7 +10,6 @@ Mimicking the Django ORM queryset over rest framework api
10
from django.core.paginator import Paginator
11
12
qs = RestFrameworkQuerySet('http://localhost:8082/api/')
13
- qs.all()
14
15
# filter
16
boys = qs.filter(gender='boy')
0 commit comments