This example demonstrate how to implement the basic GraphQL flow with Envelop and Node's http
module.
- Install all dependencies from the root of the repo (using
pnpm
) cd
into that folder, and runpnpm run start
.- Since this is a very basic and raw example, your should use
curl
(or any other HTTP client) to run the GraphQL request.
curl -X POST 'http://localhost:3000/' -H 'Content-Type: application/json' --data-raw '{ "query": "query test { hello }" }'