Then you can loop through the records: workflow.r...
# 🌎general
s
Then you can loop through the records: workflow.recordsFound = [] // Get All Ability Records for (const ability of workflow.abilitiesInQuestion) { for (const record of recordData) { if (record.Name === ability) { console.log('Found Matching Record: ' + record.Name) workflow.recordsFound.push(record) } } }