Add a soql::soql_select()
statement to a query to select a set of columns columns
, or return the original query if columns
is NULL
.
Source: R/utils.R
soql_nullable_select.Rd
Add a soql::soql_select()
statement to a query
to select a set of columns columns
, or return
the original query if columns
is NULL
.
Arguments
- soql_list
A
soql
query object, which can be piped in. If one hasn't been created yet, use or pipe insoql::soql()
.- columns
The columns to select, or
NULL
.
Value
A new soql::soql()
object with the selection statement
added, or the input object if columns
is NULL
.