I want to be able to pick a value which and select some some other values which shows only values that contains values that includes values from first pick.
I’ve been trying to play around with options.fields however I’m a little unsure what to put in as a fields value. I’ve tried ID’s and name values but I’m getting an error: ‘No field matching’
let filterArr = []
let filter = await input.recordAsync('Select Sender', base.getTable('Contacts').getView('Mills'))
filterArr.push('rectBqFb8f8DtgRLW')
let selectRecord = await input.recordAsync(
'Select a record',
base.getTable(selectBase).getView(selectBaseView),
{
fields: filterArr,
shouldAllowCreatingRecord: false
}
)
what do I need to pass as fields value?