Dan M
02/09/2022, 11:47 PMconst usage = await prisma.nation.findUnique({
select: {
_count: {
select: {
locales: true,
transitsOriginatingFromThisNation: true,
transitsDestinedForThisNation: true,
conflicts: { where: { isUserEntered: true } },
},
},
},
where: { id },
});