Sorry, no results found for "".
RFC 4122 UUID of schema menu item expressed in URL-safe base64 format
"uinr2zfqQLeCo_1O0-ao-Q"
The label of the schema menu item (only present when the schema menu item is not linked to an item type)
"Posts"
Indicates if the schema menu item refers to an item type or a modular block
"item_type"
Ordering index
1
Returns a resource object of type schema_menu_item
import { buildClient } from "@datocms/cma-client-node";
async function run() { const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const schemaMenuItem = await client.schemaMenuItems.create({ label: "Posts", kind: "item_type", });
// 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" }],}