Sorry, no results found for "".
The label of the menu item
"Posts"
The URL to which the menu item points to
Ordering index
1
Opens link in new tab (to be used together with external_url
)
Item type filter associated with the menu item (to be used together with item_type
relationship)
Returns a resource object of type menu_item
import { buildClient } from "@datocms/cma-client-node";
async function run() { const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const menuItemId = "uinr2zfqQLeCo_1O0-ao-Q";
const menuItem = await client.menuItems.update(menuItemId, { id: "uinr2zfqQLeCo_1O0-ao-Q", });
// Check the 'Returned output' tab for the result ☝️ console.log(menuItem);}
run();
{ id: "uinr2zfqQLeCo_1O0-ao-Q", label: "Posts", position: 1, external_url: "", open_in_new_tab: true, item_type: { type: "item_type", id: "DxMaW10UQiCmZcuuA-IkkA" }, item_type_filter: { type: "item_type_filter", id: "FF-P5of6Qp-DD2w0xoaa6Q" }, parent: null, children: [{ type: "menu_item", id: "uinr2zfqQLeCo_1O0-ao-Q" }],}