James Bromwell

Results 56 issues of James Bromwell

I see that you can set schema annotations like "description", and "examples" manually using the `@JSONSchema` decorator, but this information is lost when building a typing (.d.ts) file. For example,...

[Reproduction here](https://github.com/thw0rted/prismock-issues/tree/date-value-instanceof) When creating a new record from a model with columns defined as `DateTime`, actual `Date` instances are created. But when querying the same record afterwards, a copy of...

I have an [implicit many-to-many relationship](https://www.prisma.io/docs/orm/prisma-schema/data-model/relations/many-to-many-relations#implicit-many-to-many-relations) between two models. Records in model X get associated with records in model Y using `connect` or `create`. When I create records of each...

Using Prismock 1.33.1. Our code under test looks like ``` prisma.user.findMany({ include: { post: { orderBy: { date: 'desc' }, select: { id: true, name: true }, take: 5 },...

**Router Model Affected** Models: RT-AX92U **Firmware Version Affected** 388.8_4-gnuton **Is this bug present in upstream Merlin releases too?** Not sure **Describe the bug** Three times in the 3-4 weeks since...

bug

I recently added a `@Matches` decorator to a DTO class and was surprised to find that the resulting JSON schema did not change. I think that this decorator should map...