/* eslint-disable @typescript-eslint/no-unsafe-assignment */ /* eslint-disable @typescript-eslint/no-unsafe-member-access */ import { Injectable, Logger, OnModuleInit } from '@nestjs/common'; import { PrismaClient } from '@prisma/client'; @Injectable() export class PrismaService extends PrismaClient implements OnModuleInit { static readonly logger = new Logger(PrismaService.name); constructor() { super(); return this.$extends({ query: { async $allOperations({ operation, model, args, query }): Promise { const startTime: number = Date.now(); const result: any = await query(args); const duration: number = Date.now() - startTime; const requestCount: number = args.length || 1; const resultCount: number = !result ? 0 : result.length || 1; PrismaService.logger.log( `${model.toUpperCase()} ${operation.toLowerCase()} ${duration}ms ${requestCount} ${resultCount}`, ); return result; }, }, }) as PrismaService; } async onModuleInit() { await this.$connect(); } async onModuleDestroy() { await this.$disconnect(); } }