Nexus-plugin-prisma: A way to choose a specific prisma version? Prisma v2.6.0 has a breaking unintentional bug.

Created on 2 Sep 2020  路  1Comment  路  Source: graphql-nexus/nexus-plugin-prisma

Is there a way to choose a specific Prisma version with this plugin?

There was a breaking bug in a recent version of Prisma and wanted to know if it was possible to tell the plugin which version to use?

Most helpful comment

For anyone trying to change the prisma dependencies in this plugin, here's a way of doing it with yarn:

add this to your package.json

"resolutions": {
    "nexus-plugin-prisma/@prisma/ci-info": "2.1.2",
    "nexus-plugin-prisma/@prisma/cli": "2.4.0",
    "nexus-plugin-prisma/@prisma/client": "2.4.0",
    "nexus-plugin-prisma/@prisma/debug": "2.4.0",
    "nexus-plugin-prisma/@prisma/engine-core": "2.4.0",
    "nexus-plugin-prisma/@prisma/fetch-engine": "2.4.0",
    "nexus-plugin-prisma/@prisma/generator-helper": "2.4.0",
    "nexus-plugin-prisma/@prisma/get-platform": "2.4.0",
    "nexus-plugin-prisma/@prisma/sdk": "2.4.0"
  }

change the versions to the ones that you want basically.

>All comments

For anyone trying to change the prisma dependencies in this plugin, here's a way of doing it with yarn:

add this to your package.json

"resolutions": {
    "nexus-plugin-prisma/@prisma/ci-info": "2.1.2",
    "nexus-plugin-prisma/@prisma/cli": "2.4.0",
    "nexus-plugin-prisma/@prisma/client": "2.4.0",
    "nexus-plugin-prisma/@prisma/debug": "2.4.0",
    "nexus-plugin-prisma/@prisma/engine-core": "2.4.0",
    "nexus-plugin-prisma/@prisma/fetch-engine": "2.4.0",
    "nexus-plugin-prisma/@prisma/generator-helper": "2.4.0",
    "nexus-plugin-prisma/@prisma/get-platform": "2.4.0",
    "nexus-plugin-prisma/@prisma/sdk": "2.4.0"
  }

change the versions to the ones that you want basically.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

mateja176 picture mateja176  路  5Comments

sachaw picture sachaw  路  3Comments

ryands17 picture ryands17  路  5Comments

colinhacks picture colinhacks  路  5Comments

mihazs picture mihazs  路  4Comments