0

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!

Ted
  • 22,696
  • 11
  • 95
  • 109

1 Answers1

1

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.

grobbins
  • 1,564
  • 1
  • 8
  • 6