```return await prisma.user.findFirst({ select...
# orm-help
b
Copy code
return await prisma.user.findFirst({
    select: {
      oculus_id: true,
      oculus_name: true,
    },
    include:{
      daily_stats:true,
    }
  })
j
this doesn't work?
Copy code
return await prisma.user.findFirst({
    select: {
      oculus_id: true,
      oculus_name: true,
      daily_stats:true,
    },
  })
n
Hey 👋 Do you want to select specific fields from nested relation? You cannot have
select
and
include
on the same level