batchquery in google drive sdk using objective c

101 Views Asked by At

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!

1

There are 1 best solutions below

0
On BEST ANSWER

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.