타입스크립트 에러수정

This commit is contained in:
kjs
2025-09-25 10:13:43 +09:00
parent 7b84102cd9
commit 0d46bc540c
5 changed files with 582 additions and 53 deletions

View File

@@ -471,15 +471,7 @@ export class DataflowService {
const linkedData = await prisma.data_relationship_bridge.findMany({
where: whereCondition,
orderBy: { created_at: "desc" },
include: {
relationship: {
select: {
relationship_name: true,
relationship_type: true,
connection_type: true,
},
},
},
// include 제거 - relationship 관계가 스키마에 정의되지 않음
});
logger.info(
@@ -520,15 +512,7 @@ export class DataflowService {
const linkedData = await prisma.data_relationship_bridge.findMany({
where: whereCondition,
orderBy: { created_at: "desc" },
include: {
relationship: {
select: {
relationship_name: true,
relationship_type: true,
connection_type: true,
},
},
},
// include 제거 - relationship 관계가 스키마에 정의되지 않음
});
logger.info(