Context
Getting the selected record(s)
execute: async (context) => {
const { id, email } = await context.getRecord(['id', 'email']);
},execute: async (context) => {
const { id, email } = await context.getRecords(['id', 'email']);
},Getting the selected record id(s)
Getting the collection
Last updated