fix createMany resolver when updating softdeleted record (#13425)

Context: updateOne/Many works on soft deleted records but the update of
the upsertMany throws error

fixes https://github.com/twentyhq/twenty/issues/13195
This commit is contained in:
Etienne
2025-07-25 14:35:04 +02:00
committed by GitHub
parent e386303fd3
commit 13bed8e4d2

View File

@ -210,6 +210,7 @@ export class GraphqlQueryCreateManyResolverService extends GraphqlQueryBaseResol
.setFindOptions({
select: selectedColumns,
})
.withDeleted()
.getMany();
}