Skip to content

Instantly share code, notes, and snippets.

@oshliaer
Created May 12, 2018 18:17
Show Gist options
  • Save oshliaer/0f7ed5138a18db58527fcbdcb375ccc4 to your computer and use it in GitHub Desktop.
Save oshliaer/0f7ed5138a18db58527fcbdcb375ccc4 to your computer and use it in GitHub Desktop.
function getFiles() {
  return
    Drive.Files.list({
      q: "'0123qwewqryuqwoiryqwieuoiuyqwe' in parents",
      fields: "items(title,id,selfLink)",
      maxResults: 1000
    }).items.map(function(r){ return [r.title, r.id, r.selfLink]})
}
@oshliaer
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment