I have an Array type that holds a number of strings, which I am trying to save to an Array field in the REST database.
I have tried:
return StringArray; // StringArray is my array of strings
I have tried:
return JSON.stringify(StringArray); // StringArray is my array of strings
What am I doing wrong ?