I'm trying to do something like this: ```const us...
# orm-help
d
I'm trying to do something like this:
Copy code
const usage = await prisma.nation.findUnique({
    select: {
        _count: {
            select: {
                locales: true,
                transitsOriginatingFromThisNation: true,
                transitsDestinedForThisNation: true,
                conflicts: { where: { isUserEntered: true } },
            },
        },
    },
    where: { id },
});