Hi All,
I want to get stats on my ~25k entries.
I can't simply query for them because that is limited to 10k.
I could query them one at a time (and I will, if necessary), but it
would be much more efficient to do this via a batch.
It should go something like this:
// Make a feed
GBaseFeed feed = new GBaseFeed
(GBaseUriFactory.Default.ItemsFeedBatchUri, service);
feed.BatchData = new GDataBatchFeedData();
feed.BatchData.Type = GDataBatchOperationType.query;
// Add entries
GBaseEntry e = new GBaseEntry();
e.Id = new AtomId("http://www.google.com/base/feeds/items/
myItemNumber");
feed.Entries.Add(e);
// etc.
// Send the feed off
resultFeed = (GBaseFeed)feed.Service.Batch(feed,
GBaseUriFactory.Default.ItemsFeedBatchUri);
// e.Stats is null :(
So:
1. How do I tell the batch query to include the stats?
2. Where is this documented?
Thanks,
rwb.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Base Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-base-data-api?hl=en
-~----------~----~----~----~------~----~------~--~---