import { buildClient } from '@datocms/cma-client-node';async function run() { const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' }); const roleId = '34'; const role = await client.roles.find(roleId); console.log(role);}run();