sf_query_bulk_v1 | R Documentation |
This function is a convenience wrapper for submitting and retrieving query API jobs from the Bulk 1.0 API.
sf_query_bulk_v1( soql, object_name = NULL, queryall = FALSE, guess_types = TRUE, bind_using_character_cols = deprecated(), interval_seconds = 3, max_attempts = 200, control = list(...), ..., api_type = "Bulk 1.0", verbose = FALSE )
soql |
|
object_name |
|
queryall |
|
guess_types |
|
bind_using_character_cols |
|
interval_seconds |
|
max_attempts |
|
control |
|
... |
other arguments passed on to |
api_type |
|
verbose |
|
A tbl_df
of the recordset returned by the query
## Not run: # select all Ids from Account object (up to 1000) ids <- sf_query_bulk_v1(soql = 'SELECT Id FROM Account LIMIT 1000', object_name = 'Account') # alternatively you can specify as ids <- sf_query(soql = 'SELECT Id FROM Account LIMIT 1000', object_name = 'Account', api_type="Bulk 1.0") ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.