Forceres
Forceres
DTDrizzle Team
Created by Forceres on 3/28/2025 in #help
Many relations definitions are not supported?
I have a monorepo setup and wanna add specific relations for different microservices, so I have, for instance, apps table, sharedAppRelations, and another appRelations definition in microservice folder, and then I merge shared schema to specific. Expected to have all relations, but types show only shared relations
1 replies
DTDrizzle Team
Created by Forceres on 12/22/2024 in #help
Is it possible to create generic schema proxy?
<TSchema extends Record<string, unknown>, TDb extends PostgresJsDatabase<TSchema>>
<TSchema extends Record<string, unknown>, TDb extends PostgresJsDatabase<TSchema>>
something like that should be ok, but I got errors in type:
type FindFn<TK extends keyof typeof db.query = keyof typeof db.query> = (
...args:
| Parameters<(typeof db.query)[TK]['findFirst']>
| Parameters<(typeof db.query)[TK]['findMany']>
) =>
| ReturnType<(typeof db.query)[TK]['findFirst']>
| ReturnType<(typeof db.query)[TK]['findMany']>;
type FindFn<TK extends keyof typeof db.query = keyof typeof db.query> = (
...args:
| Parameters<(typeof db.query)[TK]['findFirst']>
| Parameters<(typeof db.query)[TK]['findMany']>
) =>
| ReturnType<(typeof db.query)[TK]['findFirst']>
| ReturnType<(typeof db.query)[TK]['findMany']>;
2 replies