Not understanding how to do nested filters with query API
I am looking to do migrate this query from prisma to drizzle
await prisma.marketplaceIntegration.findFirst({ where: { user: { shop: { not: null } }, // this field is a nullable string type (not referencing any table) userId: userId }});
await prisma.marketplaceIntegration.findFirst({ where: { user: { shop: { not: null } }, // this field is a nullable string type (not referencing any table) userId: userId }});