Hi there,
I have Global SEO specifically defined for all of my locales in DatoCMS.
How can I access these global localised values in Gatsby?
I have tried something in the lines of:
query HomePageMetaData {
datoCmsSite {
_allGlobalSeoLocales {
value {
siteName
fallbackSeo {
title
description
}
}
locale
}
}
datoCmsHome {
_allSeoSettingsLocales {
value {
description
title
}
locale
}
}
}
But that wouldnโt workโฆ
Any help appreciated!