Whether the call should immediately return a pending environment, or wait for the completion of the fork
Performing a fast fork reduces processing time, but it also prevents writing to the source environment during the process
Force the start of fast fork, even if there are collaborators editing some records
import { buildClient } from '@datocms/cma-client-node';async function run() {const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });const environmentId = 'main';const environment = await client.environments.fork(environmentId, {id: 'my-sandbox-env'});console.log(environment);}run();