<@U01MMCGJY5C> it’s obvious. `this.prisma` is not ...
# orm-help
v
@Chip Clark it’s obvious.
this.prisma
is not defined
c
Yes it is
Copy code
export class PersonRelationshipService {
  constructor(
    private readonly prisma: PrismaService,
    ) {};
However, I was importing another service to try and work around a separate issue. Removed that service and the definition worked. So, don't try and import a service into a service.