Hussam Khatib
05/09/2022, 5:39 PMconst getUser = await prisma.user.findUnique({
where: {
id: 19,
},
select: {
posts: {
select: {
title: true,
},
},
},
})
output
{
posts: { title: 'My first post' }
}
Is there a way to get it like the one shown below ?
{
posts: "My post title"
}Austin
05/10/2022, 12:51 AM