Google Drive API Fetch Query Javascript Syntax

I am struggling with understanding how to put compound queries together for Google Drive API.
As examples, the following fetches all work.

'https://www.googleapis.com/drive/v3/files?q=mimeType+=+'application/vnd.google-apps.folder'
'https://www.googleapis.com/drive/v3/files?fields=files(id,name)'
'https://www.googleapis.com/drive/v3/files?nextPageToken'
'https://www.googleapis.com/drive/v3/files?pageSize=200'

Can/How do I build a single compound query for all 4 of these ie. fetch 200 records that are folders and give me their id, name and a nextPageToken?