Add an "is in" statement to a SOQL query, or return the original query if match_values
is NULL
.
Source: R/utils.R
soql_nullable_is_in.Rd
An is in statement is a soql::soql_where()
statement
that requires the values of a given column to match one of the
entries of a vector of match_values
.
Arguments
- soql_list
A
soql
query object, which can be piped in. If one hasn't been created yet, use or pipe insoql::soql()
.- column
The column to filter on
- match_values
A vector of values that column must match, or
NULL
for no filtering.
Value
A new soql::soql()
object with the filter added,
or simply the input object if match_value
is NULL
.