Im using the drive api for python. We have this feature wherein the user is allowed to search for files inside the drive. We used the following parameters for the api. maxResults = 20 and q
q = 'mimeType!="application/vnd.google-apps.folder" and fullText contains "%s" '
The query returned 3 pages. Page 1 - 20 results, Page 2 - 10 results, Page 3 - 4 results.
Is it really the behavior of the api? Or is it possible to have equal results per page?
Thank you.