import { Inject, Injectable } from '@nestjs/common' import { PothosSchema } from '@smatch-corp/nestjs-pothos' import { PrismaService } from 'src/Prisma/prisma.service' @Injectable() export class RealtimeSchema extends PothosSchema { constructor(private readonly prisma: PrismaService) { super() } }