Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@keystonejs/adapter-prisma

keystonejs1.5kMIT3.2.2

KeystoneJS Prisma Database Adapter

readme

Prisma database adapter

This is the last active development release of this package as Keystone 5 is now in a 6 to 12 month active maintenance phase. For more information please read our Keystone 5 and beyond post.

View changelog

The Prisma adapter allows Keystone to connect a database using Prisma Client, a type-safe and auto-generated database client. You can learn more about Prisma Client in the Prisma docs.

Tip: Want to get started with Keystone + Prisma? Follow the guide!

Warning: The Keystone Prisma adapter is not currently production-ready. It depends on the Prisma Migrate system which is currently flagged as Preview. Once Prisma Migrate is out of preview mode, we will release a production-ready version of this package.

Note: This adapter currently only supports PostgreSQL databases, and has other limitations. For more details, see our Prisma Adapter - Production Ready Checklist

Usage

const { PrismaAdapter } = require('@keystonejs/adapter-prisma');

const keystone = new Keystone({
  adapter: new PrismaAdapter({ url: 'postgres://...' }),
});

Config

url

Default: DATABASE_URL

The connection string for your database, in the form postgres://<user>:<password>@<host>:<port>/<dbname>. By default it will use the value of the environment variable DATABASE_URL. You can learn more about the connection string format used in the Prisma docs.

getPrismaPath

Default: ({ prismaSchema }) => '.prisma'

A function which returns a directory name for storing the generated Prisma schema and client.

getDbSchemaName

Default: ({ prismaSchema }) => 'public'

A function which returns a database schema name to use for storage of all Keystone tables in your database.

You can also set the schema name by including the suffix ?schema=... in your DATABASE_URL or url. In this case you should set this value to () => null.

enableLogging

Default: false

Enables logging at the query level in the Prisma client.

dropDatabase

Default: false

Allow the adapter to drop the entire database and recreate the tables / foreign keys based on the list schema in your application. This option is ignored in production, i.e. when the environment variable NODE_ENV === 'production'.

migrationMode

Default: 'dev'

Controls how and when migrations are applied. One of 'dev', 'prototype', 'createOnly', or 'none'. In prototype mode, prisma db push is used to sync the database tables without generating migration files. In dev mode, migrations files are generated and applied whenever the schema changes. In createOnly mode, migrations are generated but not applied. In none mode, no migrations are generated or applied.

Setup

Before running Keystone with the Prisma adapter you will need to have a PostgreSQL database to connect to.

If you already have a database then you can use its connection string in the url config option. If you don't have a database already then you can create one locally with the following commands.

`shell allowCopy=false showLanguage=false createdb -U postgres keystone psql keystone -U postgres -c "CREATE USER keystone5 PASSWORD 'change_me_plz'" psql keystone -U postgres -c "GRANT ALL ON DATABASE keystone TO keystone5;"


If using the above, you will want to set a connection string of:

```javascript
const keystone = new Keystone({
  adapter: new PrismaAdapter({ url: `postgres://keystone5:change_me_plz@localhost:5432/keystone` }),
});

See the adapters setup guide for more details on how to setup a database.

changelog

@keystonejs/adapter-prisma

3.2.2

Patch Changes

3.2.1

Patch Changes

3.2.0

Minor Changes

Patch Changes

3.1.0

Minor Changes

  • f88f3976b #9 Thanks @timleslie! - Added support for configuring the field to use for search filtering via the searchField list adapter config option.

Patch Changes

3.0.1

Patch Changes

3.0.0

Major Changes

  • 749d1c86c #4709 Thanks @timleslie! - Database adapters no longer support custom ListAdapter classes via the listAdapterClass option of adapterConfig in createList().

Minor Changes

Patch Changes

2.0.0

Major Changes

  • fc2b7101f #4691 Thanks @timleslie! - Upgraded Prisma to 2.15.0, which includes the new migration framework. Added the migrationMode config option to the PrismaAdapter constructor to control how migrations are applied.

Patch Changes

1.1.2

Patch Changes

1.1.1

Patch Changes

1.1.0

Minor Changes

Patch Changes

1.0.8

Patch Changes

1.0.7

Patch Changes

1.0.6

Patch Changes

  • 874fb3377 #4009 Thanks @timleslie! - Added a provider config option to PrismaAdapter. Only postgresql is currently supported, and this is the default value.

1.0.5

Patch Changes

1.0.4

Patch Changes

1.0.3

Patch Changes

1.0.2

Patch Changes

1.0.1

Patch Changes

  • eb8180bb8 #3806 Thanks @timleslie! - Fixed an issue with the prisma client not being regenerated when the schema changed.

1.0.0

Major Changes

Patch Changes