Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/runtime/src/enhancements/delegate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ export class DelegateProxyHandler extends DefaultPrismaProxyHandler {
}

Object.entries(where).forEach(([field, value]) => {
if (['AND', 'OR', 'NOT'].includes(field)) {
// recurse into logical group
enumerate(value).forEach((item) => this.injectWhereHierarchy(model, item));
return;
}

const fieldInfo = resolveField(this.options.modelMeta, model, field);
if (!fieldInfo?.inheritedFrom) {
return;
Expand Down
146 changes: 146 additions & 0 deletions tests/regression/tests/issue-1410.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
import { loadSchema } from '@zenstackhq/testtools';

describe('issue 1410', () => {
it('regression', async () => {
const { enhance } = await loadSchema(
`
model Drink {
id Int @id @default(autoincrement())
slug String @unique

manufacturer_id Int
manufacturer Manufacturer @relation(fields: [manufacturer_id], references: [id])

type String

name String @unique
description String
abv Float
image String?

gluten Boolean
lactose Boolean
organic Boolean

containers Container[]

@@delegate(type)

@@allow('all', true)
}

model Beer extends Drink {
style_id Int
style BeerStyle @relation(fields: [style_id], references: [id])

ibu Float?

@@allow('all', true)
}

model BeerStyle {
id Int @id @default(autoincrement())

name String @unique
color String

beers Beer[]

@@allow('all', true)
}

model Wine extends Drink {
style_id Int
style WineStyle @relation(fields: [style_id], references: [id])

heavy_score Int?
tannine_score Int?
dry_score Int?
fresh_score Int?
notes String?

@@allow('all', true)
}

model WineStyle {
id Int @id @default(autoincrement())

name String @unique
color String

wines Wine[]

@@allow('all', true)
}

model Soda extends Drink {
carbonated Boolean

@@allow('all', true)
}

model Cocktail extends Drink {
mix Boolean

@@allow('all', true)
}

model Container {
barcode String @id

drink_id Int
drink Drink @relation(fields: [drink_id], references: [id])

type String
volume Int
portions Int?

inventory Int @default(0)

@@allow('all', true)
}

model Manufacturer {
id Int @id @default(autoincrement())

country_id String
country Country @relation(fields: [country_id], references: [code])

name String @unique
description String?
image String?

drinks Drink[]

@@allow('all', true)
}

model Country {
code String @id
name String

manufacturers Manufacturer[]

@@allow('all', true)
}
`
);

const db = enhance();

await db.beer.findMany({
include: { style: true, manufacturer: true },
where: { NOT: { gluten: true } },
});

await db.beer.findMany({
include: { style: true, manufacturer: true },
where: { AND: [{ gluten: true }, { abv: { gt: 50 } }] },
});

await db.beer.findMany({
include: { style: true, manufacturer: true },
where: { OR: [{ AND: [{ NOT: { gluten: true } }] }, { abv: { gt: 50 } }] },
});
});
});