is it possible to set the batch size for queries via REST API? The REST API Query documentation http://www.salesforce.com/us/developer/docs/api_rest/Content/resources_query.htm states For more information on query batch sizes, see Changing the Batch Size in Queries in the SOAP API Developer's Guide. . I know that I can set the QueryOptions via SOAP header, but is it possible to set it for REST somehow?
C# Sample for the SOAP API
private void queryOptionsSample()
{
binding.QueryOptionsValue = new QueryOptions();
binding.QueryOptionsValue.batchSize = 250;
binding.QueryOptionsValue.batchSizeSpecified = true;
}
Any help and example would be much appreciated!
Thanks