Hello, i have a question regarding a resolver: I have a model as seen here. Now I have many A, which in turn have a ‘has many’ relation to B. Now i want to query only those A, where A.currentStatus is B.status (Something like a SQL Join: A.currentStatus = B.status): How can I accomplish this in prisma, without an additional 1:1 relationship? Thanks!