0

Graphql specification has been implemented in many programming languages, but there is not implementation for my programming language of interest. I wonder how were those implementations created? Any reference materials or tutorials, beside the specification itself ?

John Jiang
  • 171
  • 2
  • 5

1 Answers1

0

Besides the specification itself, the Facebook team created graphql-js as a reference implementation for other languages.

You can check out https://graphql.org/code/ to see all of the languages which have implemented GraphQL and use those for reference as well!

  • Hi Rohit, I was kind of hoping for some tutorial about the implementation. It is hard for me to reserve engineering the source code of graphql.js... – John Jiang Mar 27 '19 at 03:57