How to access parameter from graphql query

67 Views Asked by At

Using DatoCMS, with VueJS and gridsome. The page query looks like

<page-query>
{
  DatoCms {
    _site {
      globalSeo {
        facebookPageUrl
        siteName
        titleSuffix
        twitterAccount
        fallbackSeo {
          description
          title
          twitterCard
          image {
            url
          }
        }
      }
    }
  }
}
</page-query>

Below does not work to get the values from the query

export default {
  metaInfo: {
    title: this.$page.DatoCms._site[0].globalSeo.fallbackSeo.title,
1

There are 1 best solutions below

0
On

the query needed to be adjusted and metainfo method updated