Will prisma-binding be updated to graphql 14? I'm ...
# orm-help
n
Will prisma-binding be updated to graphql 14? I'm getting warnings because now graphql-yoga installs graphql 14 and other dependencies have graphql "^0.13.0"
f
Add in projects root package.json:
Copy code
"resolutions": {
    "graphql": "14.0.2"
  },
And install graphql@14.0.2
UPD: i set both packages:
Copy code
"resolutions": {
    "graphql": "14.0.2",
    "prisma-binding": "^2.1.6"
  },
e
That’s a great point (thanks @Nikolay Lanets for the workaround!). We should update the version number in the prisma-binding. Would you mind creating an issue here about it: https://github.com/prisma/prisma-binding.
f
>> If different versions of "graphql" are the dependencies of other
relied on modules, use "resolutions" to ensure only one version is installed.