Prisma

Configuration object for the Prisma instance provided to the Authorization module

interface PrismaConfiguration {
    client: InjectionToken;
}

The client option should receive the injection token for the Prisma client instance, that can be used to connect to the application database.

Providing this option, will enable the module controllers to operate in Prisma mode.

Last updated