🦍

【Prisma】リレーション先のデータを取得する方法

2023/04/15に公開

inculed を使用する

Join してリレーション先のデータを取得したい場合は、以下のように inculed を使用して取得することができる。

async findAll(): Promise<Habit[]> {
    return await this.prisma.habit.findMany({ include: { habitStatus: true } });
}
GitHubで編集を提案

Discussion