JEverhart383 / astro-wordpress-starter

150 stars 31 forks source link

Get Child Menu Items #16

Open studiohic opened 10 months ago

studiohic commented 10 months ago

Firstly, this isn's an issue per se.

I just cant figure out how to stop child items in my menu rendering as top line menu items. Essentially the graphQL gets all the menuItems and returns them so childItems are treated the same as parentItems so I cant create a hierarchy. Has anyone had any joy with creating a multi-level menu? Below is the GRAPHQL call.

query Menu { menuItems(where: {location: MENU_EN}) { node { label uri parentId childItems { nodes { label uri } } } }