Hello guys, I am trying to insert Multiple Select data into Airtable. When I select only ONE data, it successfully inserts it into Airtable. But selecting more than one data gives error. Yes, I have already checked and data is perfectly identical on both sides, not even a space difference.
(Note: I am not trying to insert new data, the same data is in the Airtable already)
Query:
mutation
{
insert_studentRecords(
studentPreferences: "{{student_preferences.value}}"
)
{
studentPreferences
}
}
Error:
"errors": [
{
"message": "Unexpected error value: { error: \\"INVALID_MULTIPLE_CHOICE_OPTIONS\\", message: \\"Insufficient permissions to create new select option \\\\"\\\\"Standard Selection,Premium Selection\\\\"\\\\"\\", statusCode: 422 }"
Things I already tried but didn’t work:
Using “typecast”: true as I found in other answers.
It gives another set of errors. Looked everywhere but could not find the solution. Thanks.