I'm trying to upgrade an existing project which us...
# orm-help
k
I'm trying to upgrade an existing project which uses
prisma-binding
to
prisma@beta
. When running
prisma deploy
I get an error that multiple instances of
graphql
are requested. After looking at
yarn.lock
, it seems that for example
prisma-generate-schema@0.0.7
lists
graphql "^0.13.2"
and
prisma-cli-core@1.0.5-2
lists
graphql "^0.11.7"
. If I remove
prisma
from
devDependencies
it works, but is it really necessary to install prisma globally?