Search menu with Where?

I find it helpful to examine the data structure:

<pre>{{ jsonify (dict "indent" "  ") site.Menus.main }}</pre>

To get the children of about-us:

{{ $childrenOfAboutUs := (index (where site.Menus.main "Identifier" "about-us") 0).Children }}
<pre>{{ jsonify (dict "indent" "  ") $childrenOfAboutUs }}</pre>