{{ range first 3 (where (where .Pages "Section" "post" ) ".Params.categories" "not in" "news") }}
{{ .Render "list_latest" }}
{{ end }}
I would like to use nested where function to retrieve the first three articles, excluding certain categories in the post.
But, this nested where function is not actually working.
Does where function not support operators “in” and “not in”?