We are grouping all “metadata” into a “meta” object – including things like the page PATH and TITLE.
So instead of just a field called “title”, we’d prefer to use the field meta.title
instead of just title
. Is this usable as an identifier_field?
The reason for this is it simplifies all of our GraphQL in gatsby by allowing us to use a composable GraphQL fragment, instead of repeating the code in every template.
Thanks!