-
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(delegate): orderBy with base field doesn't work when the clause i…
…s an array (#1824)
- Loading branch information
Showing
2 changed files
with
66 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import { loadSchema } from '@zenstackhq/testtools'; | ||
|
||
describe('issue 1755', () => { | ||
it('regression', async () => { | ||
const { enhance } = await loadSchema( | ||
` | ||
model User { | ||
id Int @id @default(autoincrement()) | ||
contents Content[] | ||
} | ||
model Content { | ||
id Int @id @default(autoincrement()) | ||
createdAt DateTime @default(now()) | ||
user User @relation(fields: [userId], references: [id]) | ||
userId Int | ||
contentType String | ||
@@delegate(contentType) | ||
} | ||
model Post extends Content { | ||
title String | ||
} | ||
model Video extends Content { | ||
name String | ||
duration Int | ||
} | ||
`, | ||
{ enhancements: ['delegate'] } | ||
); | ||
|
||
const db = enhance(); | ||
const user = await db.user.create({ data: {} }); | ||
const now = Date.now(); | ||
await db.post.create({ | ||
data: { title: 'post1', createdAt: new Date(now - 1000), user: { connect: { id: user.id } } }, | ||
}); | ||
await db.post.create({ | ||
data: { title: 'post2', createdAt: new Date(now), user: { connect: { id: user.id } } }, | ||
}); | ||
|
||
// scalar orderBy | ||
await expect(db.post.findFirst({ orderBy: { createdAt: 'desc' } })).resolves.toMatchObject({ | ||
title: 'post2', | ||
}); | ||
|
||
// array orderBy | ||
await expect(db.post.findFirst({ orderBy: [{ createdAt: 'desc' }] })).resolves.toMatchObject({ | ||
title: 'post2', | ||
}); | ||
|
||
// nested orderBy | ||
await expect( | ||
db.user.findFirst({ include: { contents: { orderBy: [{ createdAt: 'desc' }] } } }) | ||
).resolves.toMatchObject({ | ||
id: user.id, | ||
contents: [{ title: 'post2' }, { title: 'post1' }], | ||
}); | ||
}); | ||
}); |