This commit is contained in:
pedro-php 2025-04-16 09:36:46 -03:00
parent dabf8783c8
commit ff2e79b081

View File

@ -513,6 +513,8 @@ export class ChannelStartupService {
contactFindManyArgs.skip = query.offset * (validPage - 1); contactFindManyArgs.skip = query.offset * (validPage - 1);
} }
console.dir({query});
return await this.prismaRepository.contact.findMany(contactFindManyArgs); return await this.prismaRepository.contact.findMany(contactFindManyArgs);
} }