Description Usage Arguments Value Author(s) Examples
View source: R/rforcecom.query.R
Execute a SOQL
1 | rforcecom.query(session, soqlQuery, queryAll=FALSE)
|
session |
Session data. It can be retrieve from |
soqlQuery |
A SOQL query. (ex: "SELECT Id, Name FROM Account") |
queryAll |
A boolean. Indicate if query should include deleted and archived records (available only on Task and Event records) |
Result dataset.
Takekatsu Hiramura <thira@plavox.info>
1 2 3 4 5 6 7 8 9 10 | ## Not run:
# Execute a SOQL
soqlQuery <- "SELECT Id, Name, Industry, AnnualRevenue FROM Account"
rforcecom.query(session, soqlQuery)
# Include records where IsDeleted=true
soqlQuery <- "SELECT Id, IsDeleted, Subject, Description FROM Task"
rforcecom.query(session, soqlQuery, queryAll=TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.