fix(mobile): resolve client crash and shift status inconsistency

This commit is contained in:
2026-02-17 16:23:10 +05:30
parent 2ebe40a920
commit da8192418f
14 changed files with 261 additions and 5 deletions

View File

@@ -247,6 +247,7 @@ query listShiftRolesByShiftIdAndTimeRange(
# ------------------------------------------------------------
query listShiftRolesByVendorId(
$vendorId: UUID!
$offset: Int
$limit: Int
) @auth(level: USER) {
@@ -313,6 +314,7 @@ query listShiftRolesByVendorId(
vendor { id companyName }
}
}
}
}

View File

@@ -33,4 +33,6 @@ type ShiftRole @table(name: "shift_roles", key: ["shiftId", "roleId"]) {
createdAt: Timestamp @default(expr: "request.time")
updatedAt: Timestamp @default(expr: "request.time")
}