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 response = await client.graphs.getTuples('owner', 'name');
console.log(response.tuples);
}
main();