Description Usage Arguments Value Note References Examples
View source: R/rforcecom.submitBulkQuery.R
This function takes a SOQL text string and submits the query to an already existing Bulk API Job of operation "query"
1 | rforcecom.submitBulkQuery(session, jobId, query)
|
session |
a named character vector defining parameters of the api connection as returned by rforcecom.login |
jobId |
a character string defining the salesforce id assigned to a submitted job as returned by rforcecom.createBulkJob |
query |
a character string defining a valid SOQL query on the Salesforce object associated with the job |
A list
parameters of the batch
Bulk API query doesn't support the following SOQL:
COUNT
ROLLUP
SUM
GROUP BY CUBE
OFFSET
Nested SOQL queries
Relationship fields
Additionally, Bulk API can't access or query compound address or compound geolocation fields.
https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/
1 2 3 4 5 | ## Not run:
my_query <- "SELECT Id, Name FROM Account LIMIT 10"
query_info <- rforcecom.submitBulkQuery(session, jobId=job_info$id, query=my_query)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.