Skip to content
This repository has been archived by the owner on Sep 21, 2019. It is now read-only.

mrtnzlml-archive/graphql-14.5-bc-break

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Working code:

Change package.json to:

{
  "dependencies": {
    "graphql": "14.4.2"
  }
}

And run node index.js

Broken code (BC break in minor release):

Change package.json to:

{
  "dependencies": {
    "graphql": "14.5.0"
    // "graphql": "^14.5.0"
  }
}

And run node index.js. Is throws this error:

GraphQLError: Variable "$name" of required type "String!" was not provided.