How to create a batchquery in google drive sdk using objective c? I have already created single queries, and I wonder how to get responses from batchquery as well. Thanks!
Create a GTLBatchQuery object and add queries to it, then execute the batch query. A GTLBatchResult is passed to the callback. Individual queries can have their own completion handler blocks as well.
There is an example batch request in the docs here.