Hi
I’m playing around with scripting (not a programmer) and I’ve run into a situation where I can’t update assign the collaborator object.
I’ve modified my code to represent what I’m looking for
Collaborator is the collaborator field on my base. I’m trying to assign a collaborator (through a previous function) named ‘assignCollaborator’
await table.updateRecordAsync(record, {
"Collaborator": {
"name": assignCollaborator}
})
The errors I’m getting say that the fields don’t exist but I can create references like this
let collabName = record.getCellValue("Collaborator").name
Some explanation here would be super helpful.
Thank you