Louis Holley
05/20/2022, 4:41 PMEnsure that there is only one instance of "graphql" in the node_modules
directory. If different versions of "graphql" are the dependencies of other
relied on modules, use "resolutions" to ensure only one version is installed.
<https://yarnpkg.com/en/docs/selective-version-resolutions>
Duplicate "graphql" modules cannot be used at the same time since different
versions may have different capabilities and behavior. The data from one
version used in the function from another could produce confusing and
spurious results.
does anyone know how to resolve it?thdxr
05/20/2022, 4:43 PMthdxr
05/20/2022, 4:43 PMthdxr
05/20/2022, 4:44 PMLouis Holley
05/20/2022, 4:46 PM"resolutions": {
"graphql": "15.8.0"
}
to the root package.json
but it doesn't seem to helpLouis Holley
05/20/2022, 4:46 PMthdxr
05/20/2022, 4:46 PMthdxr
05/20/2022, 4:47 PMLouis Holley
05/20/2022, 4:47 PM