import Tractorbeam from 'tractorbeam';const client = new Tractorbeam({ apiToken: process.env['TRACTORBEAM_API_TOKEN'], // This is the default and can be omitted});async function main() { const graph = await client.graphs.create({ name: 'name' }); console.log(graph.created_at);}main();
import Tractorbeam from 'tractorbeam';const client = new Tractorbeam({ apiToken: process.env['TRACTORBEAM_API_TOKEN'], // This is the default and can be omitted});async function main() { const graph = await client.graphs.create({ name: 'name' }); console.log(graph.created_at);}main();