admin管理员组文章数量:1345884
I have 2 tables:
model Collection {
id String @id @default(uuid()) @db.Uuid/
floorPrices CollectionFloorPrice[]
}
model CollectionFloorPrice {
id String @id @default(uuid()) @db.Uuid
collection Collection @relation(fields: [collectionId], references: [id])
collectionId String @db.Uuid
}
How do I query collections that only have rows present in CollectionFloorPrice
? In SQL it would be a simple JOIN.
This isn't working:
return await this.prisma.collection.findMany({
where: {
floorPrices: {
exists: true,
},
},
});
I have 2 tables:
model Collection {
id String @id @default(uuid()) @db.Uuid/
floorPrices CollectionFloorPrice[]
}
model CollectionFloorPrice {
id String @id @default(uuid()) @db.Uuid
collection Collection @relation(fields: [collectionId], references: [id])
collectionId String @db.Uuid
}
How do I query collections that only have rows present in CollectionFloorPrice
? In SQL it would be a simple JOIN.
This isn't working:
return await this.prisma.collection.findMany({
where: {
floorPrices: {
exists: true,
},
},
});
Share
Improve this question
asked Mar 16, 2022 at 15:57
ilmoiilmoi
2,5644 gold badges35 silver badges57 bronze badges
2 Answers
Reset to default 6 prisma.collection.findMany({
where: { floorPrices: { some: {} } }
})
Prisma's relation filters for a model named CollectionFloorPrice
are:
export type CollectionFloorPriceFilter = {
every?: CollectionFloorPriceWhereInput | null
some?: CollectionFloorPriceWhereInput | null
none?: CollectionFloorPriceWhereInput | null
}
To get only Collection
s that have at least one CollectionFloorPrice
, you should use some
(instead of exists
) and specify a condition that always return true for any related record that exists.
And if you want to your query includes related CollectionFloorPrice
s you must specify it in include
property.
return await this.prisma.collection.findMany({
where: {
floorPrices: {
some: {
id: { not: "" } // It always should be true.
},
},
},
// if you want to include related floor prices in returned object:
include: {
floorPrices: true,
},
});
本文标签:
版权声明:本文标题:javascript - Prisma js ORM - how to filter for results that have entry in a related table (effectively JOIN)? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743816747a2544060.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论