Create a GraphQL HTTP server with Express.
The document discusses the deprecation of express-graphql, the first official implementation of using GraphQL with HTTP, in favor of graphql-http. graphql-http is now the official reference implementation of the GraphQL over HTTP spec, catering to users and library authors.
For library authors and those looking for a basic GraphQL over HTTP implementation, consider using graphql-http as the official reference. To get started, you can install graphql-http by running the following command in your terminal:
npm install graphql-http
The document highlights the deprecation of express-graphql and the emergence of graphql-http as the official reference implementation for GraphQL over HTTP. Users seeking a simple and compliant implementation can rely on graphql-http, while those requiring advanced features are recommended to explore other JavaScript GraphQL server options.