“Prisma Return a Relations Count mit Einbeziehung” Code-Antworten

Prisma Return a Relations Count mit Einbeziehung

const usersWithCount = await prisma.user.findMany({
  include: {
    _count: {
      select: { posts: true },
    },
  },
})
Puzzled Puffin

Prisma Return a Relations Count mit Einbeziehung

const usersWithCount = await prisma.user.findMany({
  include: {
    _count: {
      select: { posts: true },
    },
  },
})

/*
{ id: 1, _count: { posts: 3 } },
{ id: 2, _count: { posts: 2 } },
{ id: 3, _count: { posts: 2 } },
{ id: 4, _count: { posts: 0 } },
{ id: 5, _count: { posts: 0 } }
*/
Puzzled Puffin

Ähnliche Antworten wie “Prisma Return a Relations Count mit Einbeziehung”

Fragen ähnlich wie “Prisma Return a Relations Count mit Einbeziehung”

Weitere verwandte Antworten zu “Prisma Return a Relations Count mit Einbeziehung” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen