Coder Social home page Coder Social logo

Comments (5)

erikjalevik avatar erikjalevik commented on May 21, 2024

I am struggling with the same problem. I am trying to get a GraphQL query inside a template to read the intl.language value set in the context by gatsby-plugin-intl, so that the query can pass the current language code to the CMS.

I would like to be able to say something like:

export const query = graphql`
  query GenericPageQuery($slug: String!, $intl: Object!) {
    contentfulGenericPage(slug: { eq: $slug }, node_locale: { eq: $intl.language }) {
      slug
      ...
    }
  }
`

This is however not valid GraphQL. There is no type Object for the $intl variable, and furthermore the dot access in $intl.language also causes an error.

What is the correct way of doing this?

from gatsby-plugin-intl.

fabianrios avatar fabianrios commented on May 21, 2024

Honestly I clone this project and pass the language property of intl as a string to been able to use it. but there most be a better way to do this.

from gatsby-plugin-intl.

dsfrederic avatar dsfrederic commented on May 21, 2024

+1

from gatsby-plugin-intl.

mmende avatar mmende commented on May 21, 2024

I managed to use the locale in page queries by adding it manually to the context in gatsby-node.js like so

exports.onCreatePage = ({ page, actions }) => {
  const { createPage, deletePage } = actions
  const { language } = page.context.intl
  deletePage(page)
  createPage({
    ...page,
    context: {
      ...page.context,
      language,
    },
  })
}

...this allows me to then use language in page queries like so e.g.

query MyQuery($language: String) {
  allQuotes(filter: { locale: { eq: $language } } ) {
    content
  }
}

Edit: ...just saw the last comment from @fabianrios suggesting exactly that.

from gatsby-plugin-intl.

fabianrios avatar fabianrios commented on May 21, 2024

solved in #96

from gatsby-plugin-intl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.