Hi , i am converting a site to internationalisation using Gridsome
in my gridsome.server.js I have the following.
const { data } = await graphql(` {
strapi {
articles {
slug
}
categories {
slug
}
places {
slug
}
}
}
`);
This of course only brings me back the default locale. How do I change this to fetch, for example, all categories across all locales? How would I add a locale query to the categories in this example.
Best,
Jon