Sorry, no results found for "".
Returns an array of resource objects of type fieldset
1import { buildClient } from "@datocms/cma-client-node";2 3async function run() {4 const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });5 6 const modelIdOrApiKey = "blog_post";7 8 const fieldsets = await client.fieldsets.list(modelIdOrApiKey);9 10 for (const fieldset of fieldsets) {11 // Check the 'Returned output' tab for the result ☝️12 console.log(fieldset);13 }14}15 16run();
1{2 id: "93Y1C2sySkG4Eg0atBRIwg",3 title: "SEO-related fields",4 hint: "Please fill in these fields!",5 position: 1,6 collapsible: true,7 start_collapsed: false,8 item_type: { type: "item_type", id: "DxMaW10UQiCmZcuuA-IkkA" },9}