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
fix(google-drive): expose the page token so pagination is reachable
list, search, list_comments, list_permissions and list_revisions each
declared a hidden pageToken and forwarded it to Google, but the block had
no subBlock of that name and never has — so every list was capped at one
page and the nextPageToken output had nowhere to go.
Adds a per-operation Page Token field mirroring the block's existing
per-operation pageSize fields, collapses them onto the canonical
pageToken in the params mapper, and flips the tool param to user-only so
it is documented and settable.
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/google_drive.mdx
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ List files and folders in Google Drive with complete metadata
46
46
|`folderId`| string | No | The ID of the folder to list files from \(internal use\)|
47
47
|`query`| string | No | Search term to filter files by name \(e.g. "budget" finds files with "budget" in the name\). Do NOT use Google Drive query syntax here - just provide a plain search term. |
48
48
|`pageSize`| number | No | The maximum number of files to return \(default: 100\)|
49
+
|`pageToken`| string | No | The page token to use for pagination |
49
50
50
51
#### Output
51
52
@@ -484,6 +485,7 @@ Search for files in Google Drive using advanced query syntax (e.g., fullText con
0 commit comments