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.
2 parents 554c6db + 52dacbd commit 1022d66Copy full SHA for 1022d66
1 file changed
examples/index_and_search.py
@@ -67,6 +67,9 @@
67
res = client.collections['books'].documents.search({
68
'q': 'the',
69
'query_by': 'title',
70
- 'sort_by': 'ratings_count:desc'
+ 'sort_by': 'ratings_count:desc',
71
+ 'page': i,
72
+ 'per_page': 10,
73
})
74
print(res['found'])
75
+ i += 1
0 commit comments