Content Management API > Schema Menu Item 
 List all schema menu items
Query parameters
  filter   object   
      ids   string   
 IDs to fetch, comma separated
 Example: 
 "42,554"
 Returns
Returns an array of resource objects of type schema_menu_item
Examples
import { buildClient } from "@datocms/cma-client-node";
async function run() {  const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
  const schemaMenuItems = await client.schemaMenuItems.list();
  for (const schemaMenuItem of schemaMenuItems) {    // Check the 'Returned output' tab for the result ☝️    console.log(schemaMenuItem);  }}
run();{  id: "uinr2zfqQLeCo_1O0-ao-Q",  label: "Posts",  position: 1,  kind: "item_type",  item_type: { type: "item_type", id: "DxMaW10UQiCmZcuuA-IkkA" },  parent: null,  children: [{ type: "schema_menu_item", id: "uinr2zfqQLeCo_1O0-ao-Q" }],}