https://discord.gg/botpress logo
const totalRecords = await ContactTable.findRecord...
# 🌎general
s
const totalRecords = await ContactTable.findRecords({ limit: 200 }) const totalRecordCount = totalRecords.length +1 for (let i = 1; i < totalRecordCount; i++) { await ContactTable.updateRecord(i, { msg: 11 }) }
7 Views