Skip to content

August 21, 2024

Compare
Choose a tag to compare
@theguild-bot theguild-bot released this 21 Aug 06:36
· 58 commits to master since this release
b6d05ee

@graphql-tools/executor-http@1.1.6

Patch Changes

  • f9dd3d6
    Thanks @ardatan! - Details in the extensions when an unexpected
    error occurs;

    {
      "request": {
        "url": "https://api.example.com/graphql",
        "method": "POST",
        "body": {
          "query": "query { hello }"
        }
      },
      "response": {
        "status": 500,
        "statusText": "Internal Server Error",
        "headers": {
          "content-type": "application/json"
        },
        "body": {
          "errors": [
            {
              "message": "Internal Server Error"
            }
          ]
        }
      }
    }