Query for multiple mime types (OR-ing)

google-drive-api

Solution

There is no `or` operator for now. However, you can use batch call for Drive API to achieve same goal. This will merge multiple queries into one.

UPDATE: Please refer to Luke's comment below.

Problem

Following the doc https://developers.google.com/drive/search-parameters on search parameters, I can combine parameters with `and`. `mimeType`-s can be tested with `=`. Can I extract multiple mime types files in one query? No `or` operator in the doc or if I can use `contains` for `mimeType`.

Original source