I’m trying to use where with an OR - is this possible??
e.g.
{{ range where .Data.Pages ".Params.moderated" "==" true OR ".Params.moderated" "==" nil }}
(i.e all pages where there is a params.moderated = true OR it isn’t set at all)
Obviously thats not working so how do I do this??
Thanks