Hey all :wave: If I do something like ```prisma.mo...
# orm-help
f
Hey all 👋 If I do something like
Copy code
prisma.model.findFirst({
  where: {
    something,
  },
  orderBy: {
    updatedAt: 'desc',
  },
})
Will it sort before or after the limit clause? I mean, will it bring me the last updated record? Or just the first thing it finds?
✅ 1
c
You will get the most recently updated record that meets your where clause.
f
Thanks!