Skip to content

Instantly share code, notes, and snippets.

@iliran11
Last active May 4, 2020 04:54
Show Gist options
  • Save iliran11/df64e2d2fb0bb6c1451addb4231eca6b to your computer and use it in GitHub Desktop.
Save iliran11/df64e2d2fb0bb6c1451addb4231eca6b to your computer and use it in GitHub Desktop.
Internationalize your Graphql - server.js
const typeDefs = gql`
directive @intl on FIELD_DEFINITION
type Query {
# Makring "greeting" field for internationalization.
greeting: String @intl
id: Int
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment