Is it possible to use $ parameters when querying a Global List?
When querying a Global Table, I can provide an SQL query as a string, and a number of $ parameters (to fill in fields designated as $1, $2, etc. in the query string) as additional arguments to Table.query.
However, when querying a Global List, List.pull has many other parameters related to the pull itself, so doesn't appear to have fields for $ parameters. Is there any such way to use them when making a query from FlexScript code?
It is possible to just fill in the query string using string concatenation, but I find the $ parameter syntax to be much cleaner. It also removes the need to worry about whether it's necessary to place quotes around a particular value (and prevents things breaking if a string value happens to include ' or ").