prisma-nestjs-graphql
prisma-nestjs-graphql copied to clipboard
AtomicOperation true not working for UpdateInput
My generator have noAtomicOperations set to true, it works for CreateInput but for UpdateInput I still get atomicOperations like this:
export type SomeTypeUpdateInput = {
name ?: StringFieldUpdateOperationsInput | string
}
I want to get this result:
export type SomeTypeUpdateInput = {
name ?: string
}
Is-it Bug or a good result ? If it's good result can I get the input for update without atomic operations ?
Could you provide minimal schema which helps reproduce the issue?