© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
Drizzle TeamDT
Drizzle Team•3y ago•
2 replies
AstroBear

Include count of relations

How can I achieve the same this Prisma query does in Drizzle?
const result = await prisma.user.findUnique({
  where: { id },
  include: {
    posts: {
      select: {
        _count: true
      }
    }
  }
});
const result = await prisma.user.findUnique({
  where: { id },
  include: {
    posts: {
      select: {
        _count: true
      }
    }
  }
});

I'd like to include the number of posts the user has created in the result
Drizzle TeamJoin
The official Discord for all Drizzle related projects, such as Drizzle ORM, Drizzle Kit, Drizzle Studio and more!
11,879Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Relations include query
Drizzle TeamDTDrizzle Team / help
3y ago
Drizzle-zod Include Relations
Drizzle TeamDTDrizzle Team / help
3y ago
How to get the count of relations?
Drizzle TeamDTDrizzle Team / help
3y ago
relations.ts alway include column name
Drizzle TeamDTDrizzle Team / help
2y ago