I can't seem to find anything about what functions are available to me in the outFields parameter of a query.
I can do things like UPPER(field) and get my string field in upper-case. Or I can do field * 10 to get that field multiplied by 10. But I can't use LEFT(field, n).
From what I can find, the documentation just says this parameter takes lists of field names or a '*' wildcard, not even a mention of functions.
Knowing what is and isn't allowed here without doing lots of trial and error would be great. I have a number of use-cases where I only need to store the data one way, but might need to query it out differently. Functions in the query save me a step of manipulating the data after getting it.