IDs to fetch, comma separated
"42,554"
Returns an array of resource objects of type schema_menu_item
1import { buildClient } from "@datocms/cma-client-node";2 3async function run() {4 const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });5 6 const schemaMenuItems = await client.schemaMenuItems.list();7 8 for (const schemaMenuItem of schemaMenuItems) {9 // Check the 'Returned output' tab for the result ☝️10 console.log(schemaMenuItem);11 }12}13 14run();
1{2 id: "uinr2zfqQLeCo_1O0-ao-Q",3 label: "Posts",4 position: 1,5 kind: "item_type",6 item_type: { type: "item_type", id: "DxMaW10UQiCmZcuuA-IkkA" },7 parent: null,8 children: [{ type: "schema_menu_item", id: "uinr2zfqQLeCo_1O0-ao-Q" }],9}