Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 331 Bytes

README.md

File metadata and controls

9 lines (9 loc) · 331 Bytes

Steps to reproduce

  1. Install the project
  2. Run npm start
  3. Send an invalid query to the initialized server
curl --location --request POST 'http://localhost:4000/graphql' \
--header 'Content-Type: application/json' \
--data-raw '{"query":"query ($x: Int!, $y: Int!) {\n    add (x: $x, y: $y)\n}","variables":{"x":1}}'