Is something like this possible?
Is something like this possible with prisma:
I have a table with applications, and a table with the differents status's the applications has. Now, I want to get applications with a specific form_id, with the status, but only the latest status. Then I would like to filter that status, so it's only "pending" or "accpeted for example..
The above query does what I want, but I can't really see how I should do that in prisma.
I have a table with applications, and a table with the differents status's the applications has. Now, I want to get applications with a specific form_id, with the status, but only the latest status. Then I would like to filter that status, so it's only "pending" or "accpeted for example..
The above query does what I want, but I can't really see how I should do that in prisma.