solving problem adding checkin time

This commit is contained in:
José Salazar
2026-02-02 20:45:12 +09:00
parent d951b0a95d
commit 818fc1759a
13 changed files with 20113 additions and 20003 deletions

View File

@@ -1,16 +1,16 @@
# Basic Usage # Basic Usage
```dart ```dart
ExampleConnector.instance.CreateStaff(createStaffVariables).execute(); ExampleConnector.instance.createTaskComment(createTaskCommentVariables).execute();
ExampleConnector.instance.UpdateStaff(updateStaffVariables).execute(); ExampleConnector.instance.updateTaskComment(updateTaskCommentVariables).execute();
ExampleConnector.instance.DeleteStaff(deleteStaffVariables).execute(); ExampleConnector.instance.deleteTaskComment(deleteTaskCommentVariables).execute();
ExampleConnector.instance.listStaffAvailabilities(listStaffAvailabilitiesVariables).execute(); ExampleConnector.instance.createTaxForm(createTaxFormVariables).execute();
ExampleConnector.instance.listStaffAvailabilitiesByStaffId(listStaffAvailabilitiesByStaffIdVariables).execute(); ExampleConnector.instance.updateTaxForm(updateTaxFormVariables).execute();
ExampleConnector.instance.getStaffAvailabilityByKey(getStaffAvailabilityByKeyVariables).execute(); ExampleConnector.instance.deleteTaxForm(deleteTaxFormVariables).execute();
ExampleConnector.instance.listStaffAvailabilitiesByDay(listStaffAvailabilitiesByDayVariables).execute(); ExampleConnector.instance.createUserConversation(createUserConversationVariables).execute();
ExampleConnector.instance.createStaffAvailabilityStats(createStaffAvailabilityStatsVariables).execute(); ExampleConnector.instance.updateUserConversation(updateUserConversationVariables).execute();
ExampleConnector.instance.updateStaffAvailabilityStats(updateStaffAvailabilityStatsVariables).execute(); ExampleConnector.instance.markConversationAsRead(markConversationAsReadVariables).execute();
ExampleConnector.instance.deleteStaffAvailabilityStats(deleteStaffAvailabilityStatsVariables).execute(); ExampleConnector.instance.incrementUnreadForUser(incrementUnreadForUserVariables).execute();
``` ```
@@ -23,7 +23,7 @@ Optional fields can be discovered based on classes that have `Optional` object t
This is an example of a mutation with an optional field: This is an example of a mutation with an optional field:
```dart ```dart
await ExampleConnector.instance.searchInvoiceTemplatesByOwnerAndName({ ... }) await ExampleConnector.instance.listStaffAvailabilitiesByDay({ ... })
.offset(...) .offset(...)
.execute(); .execute();
``` ```

View File

@@ -7,7 +7,7 @@ class UpdateApplicationStatusVariablesBuilder {
Optional<ApplicationStatus> _status = Optional.optional((data) => ApplicationStatus.values.byName(data), enumSerializer); Optional<ApplicationStatus> _status = Optional.optional((data) => ApplicationStatus.values.byName(data), enumSerializer);
Optional<Timestamp> _checkInTime = Optional.optional((json) => json['checkInTime'] = Timestamp.fromJson(json['checkInTime']), defaultSerializer); Optional<Timestamp> _checkInTime = Optional.optional((json) => json['checkInTime'] = Timestamp.fromJson(json['checkInTime']), defaultSerializer);
Optional<Timestamp> _checkOutTime = Optional.optional((json) => json['checkOutTime'] = Timestamp.fromJson(json['checkOutTime']), defaultSerializer); Optional<Timestamp> _checkOutTime = Optional.optional((json) => json['checkOutTime'] = Timestamp.fromJson(json['checkOutTime']), defaultSerializer);
String roleId; Optional<String> _roleId = Optional.optional(nativeFromJson, nativeToJson);
final FirebaseDataConnect _dataConnect; UpdateApplicationStatusVariablesBuilder shiftId(String? t) { final FirebaseDataConnect _dataConnect; UpdateApplicationStatusVariablesBuilder shiftId(String? t) {
_shiftId.value = t; _shiftId.value = t;
@@ -29,8 +29,12 @@ class UpdateApplicationStatusVariablesBuilder {
_checkOutTime.value = t; _checkOutTime.value = t;
return this; return this;
} }
UpdateApplicationStatusVariablesBuilder roleId(String? t) {
_roleId.value = t;
return this;
}
UpdateApplicationStatusVariablesBuilder(this._dataConnect, {required this.id,required this.roleId,}); UpdateApplicationStatusVariablesBuilder(this._dataConnect, {required this.id,});
Deserializer<UpdateApplicationStatusData> dataDeserializer = (dynamic json) => UpdateApplicationStatusData.fromJson(jsonDecode(json)); Deserializer<UpdateApplicationStatusData> dataDeserializer = (dynamic json) => UpdateApplicationStatusData.fromJson(jsonDecode(json));
Serializer<UpdateApplicationStatusVariables> varsSerializer = (UpdateApplicationStatusVariables vars) => jsonEncode(vars.toJson()); Serializer<UpdateApplicationStatusVariables> varsSerializer = (UpdateApplicationStatusVariables vars) => jsonEncode(vars.toJson());
Future<OperationResult<UpdateApplicationStatusData, UpdateApplicationStatusVariables>> execute() { Future<OperationResult<UpdateApplicationStatusData, UpdateApplicationStatusVariables>> execute() {
@@ -38,7 +42,7 @@ class UpdateApplicationStatusVariablesBuilder {
} }
MutationRef<UpdateApplicationStatusData, UpdateApplicationStatusVariables> ref() { MutationRef<UpdateApplicationStatusData, UpdateApplicationStatusVariables> ref() {
UpdateApplicationStatusVariables vars= UpdateApplicationStatusVariables(id: id,shiftId: _shiftId,staffId: _staffId,status: _status,checkInTime: _checkInTime,checkOutTime: _checkOutTime,roleId: roleId,); UpdateApplicationStatusVariables vars= UpdateApplicationStatusVariables(id: id,shiftId: _shiftId,staffId: _staffId,status: _status,checkInTime: _checkInTime,checkOutTime: _checkOutTime,roleId: _roleId,);
return _dataConnect.mutation("updateApplicationStatus", dataDeserializer, varsSerializer, vars); return _dataConnect.mutation("updateApplicationStatus", dataDeserializer, varsSerializer, vars);
} }
} }
@@ -121,12 +125,11 @@ class UpdateApplicationStatusVariables {
late final Optional<ApplicationStatus>status; late final Optional<ApplicationStatus>status;
late final Optional<Timestamp>checkInTime; late final Optional<Timestamp>checkInTime;
late final Optional<Timestamp>checkOutTime; late final Optional<Timestamp>checkOutTime;
final String roleId; late final Optional<String>roleId;
@Deprecated('fromJson is deprecated for Variable classes as they are no longer required for deserialization.') @Deprecated('fromJson is deprecated for Variable classes as they are no longer required for deserialization.')
UpdateApplicationStatusVariables.fromJson(Map<String, dynamic> json): UpdateApplicationStatusVariables.fromJson(Map<String, dynamic> json):
id = nativeFromJson<String>(json['id']), id = nativeFromJson<String>(json['id']) {
roleId = nativeFromJson<String>(json['roleId']) {
@@ -150,6 +153,9 @@ class UpdateApplicationStatusVariables {
checkOutTime.value = json['checkOutTime'] == null ? null : Timestamp.fromJson(json['checkOutTime']); checkOutTime.value = json['checkOutTime'] == null ? null : Timestamp.fromJson(json['checkOutTime']);
roleId = Optional.optional(nativeFromJson, nativeToJson);
roleId.value = json['roleId'] == null ? null : nativeFromJson<String>(json['roleId']);
} }
@override @override
bool operator ==(Object other) { bool operator ==(Object other) {
@@ -192,7 +198,9 @@ class UpdateApplicationStatusVariables {
if(checkOutTime.state == OptionalState.set) { if(checkOutTime.state == OptionalState.set) {
json['checkOutTime'] = checkOutTime.toJson(); json['checkOutTime'] = checkOutTime.toJson();
} }
json['roleId'] = nativeToJson<String>(roleId); if(roleId.state == OptionalState.set) {
json['roleId'] = roleId.toJson();
}
return json; return json;
} }

View File

@@ -45,7 +45,7 @@ class ViewOrdersRepositoryImpl implements IViewOrdersRepository {
'Your Company'; 'Your Company';
return result.data.shiftRoles.map((dc.ListShiftRolesByBusinessAndDateRangeShiftRoles shiftRole) { return result.data.shiftRoles.map((dc.ListShiftRolesByBusinessAndDateRangeShiftRoles shiftRole) {
final DateTime? shiftDate = shiftRole.shift.date?.toDateTime(); final DateTime? shiftDate = shiftRole.shift.date?.toDateTime().toLocal();
final String dateStr = shiftDate == null final String dateStr = shiftDate == null
? '' ? ''
: DateFormat('yyyy-MM-dd').format(shiftDate); : DateFormat('yyyy-MM-dd').format(shiftDate);

View File

@@ -215,13 +215,31 @@ class ClockInRepositoryImpl implements ClockInRepositoryInterface {
app ??= (await _getTodaysApplications(staffId)) app ??= (await _getTodaysApplications(staffId))
.firstWhere((a) => a.shiftId == shiftId); .firstWhere((a) => a.shiftId == shiftId);
await _dataConnect final Timestamp checkInTs = _fromDateTime(DateTime.now());
.updateApplicationStatus( print(
id: app.id, 'ClockIn request: appId=${app.id} shiftId=$shiftId '
roleId: app.shiftRole.id, 'checkInTime=${checkInTs.toJson()}',
) );
.checkInTime(_fromDateTime(DateTime.now())) try {
.execute(); await _dataConnect
.updateApplicationStatus(
id: app.id,
)
.checkInTime(checkInTs)
.execute();
} catch (e) {
print('ClockIn updateApplicationStatus error: $e');
print('ClockIn error type: ${e.runtimeType}');
try {
final dynamic err = e;
final dynamic details =
err.details ?? err.response ?? err.data ?? err.message;
if (details != null) {
print('ClockIn error details: $details');
}
} catch (_) {}
rethrow;
}
return getAttendanceStatus(); return getAttendanceStatus();
} }
@@ -236,10 +254,10 @@ class ClockInRepositoryImpl implements ClockInRepositoryInterface {
_getActiveApplication(apps); _getActiveApplication(apps);
if (app == null) throw Exception('No active shift found to clock out'); if (app == null) throw Exception('No active shift found to clock out');
await _dataConnect.updateApplicationStatus( await _dataConnect
id: app.id, .updateApplicationStatus(
roleId: app.shiftRole.id, id: app.id,
) )
.status(dc.ApplicationStatus.CHECKED_OUT) .status(dc.ApplicationStatus.CHECKED_OUT)
.checkOutTime(_fromDateTime(DateTime.now())) .checkOutTime(_fromDateTime(DateTime.now()))
.execute(); .execute();

View File

@@ -52,7 +52,7 @@ class ShiftsRepositoryImpl implements ShiftsRepositoryInterface {
return user.uid; return user.uid;
} }
DateTime? _toDateTime(dynamic t) { DateTime? _toDateTime(dynamic t, {String? debugKey}) {
if (t == null) return null; if (t == null) return null;
DateTime? dt; DateTime? dt;
if (t is Timestamp) { if (t is Timestamp) {
@@ -72,7 +72,13 @@ class ShiftsRepositoryImpl implements ShiftsRepositoryInterface {
} }
if (dt != null) { if (dt != null) {
return DateTimeUtils.toDeviceTime(dt); final local = DateTimeUtils.toDeviceTime(dt);
if (debugKey != null && debugKey.isNotEmpty) {
print(
'ShiftDate convert: key=$debugKey raw=$t parsed=${dt.toIso8601String()} local=${local.toIso8601String()}',
);
}
return local;
} }
return null; return null;
} }
@@ -255,10 +261,20 @@ class ShiftsRepositoryImpl implements ShiftsRepositoryInterface {
final List<Shift> mappedShifts = []; final List<Shift> mappedShifts = [];
for (final sr in allShiftRoles) { for (final sr in allShiftRoles) {
print(
'FindShifts raw: shiftId=${sr.shiftId} roleId=${sr.roleId} '
'start=${sr.startTime?.toJson()} end=${sr.endTime?.toJson()} '
'shiftDate=${sr.shift.date?.toJson()}',
);
final DateTime? shiftDate = _toDateTime(sr.shift.date); final DateTime? shiftDate = _toDateTime(sr.shift.date);
final startDt = _toDateTime(sr.startTime); final startDt = _toDateTime(sr.startTime);
final endDt = _toDateTime(sr.endTime); final endDt = _toDateTime(sr.endTime);
final createdDt = _toDateTime(sr.createdAt); final createdDt = _toDateTime(sr.createdAt);
print(
'FindShifts local: shiftId=${sr.shiftId} roleId=${sr.roleId} '
'start=${startDt?.toIso8601String()} end=${endDt?.toIso8601String()} '
'shiftDate=${shiftDate?.toIso8601String()}',
);
mappedShifts.add( mappedShifts.add(
Shift( Shift(
id: sr.shiftId, id: sr.shiftId,
@@ -588,7 +604,7 @@ class ShiftsRepositoryImpl implements ShiftsRepositoryInterface {
} }
await _dataConnect await _dataConnect
.updateApplicationStatus(id: appId, roleId: roleId) .updateApplicationStatus(id: appId)
.status(newStatus) .status(newStatus)
.execute(); .execute();
} }

View File

@@ -30,6 +30,7 @@ class ShiftsBloc extends Bloc<ShiftsEvent, ShiftsState> {
}) : super(ShiftsInitial()) { }) : super(ShiftsInitial()) {
on<LoadShiftsEvent>(_onLoadShifts); on<LoadShiftsEvent>(_onLoadShifts);
on<LoadHistoryShiftsEvent>(_onLoadHistoryShifts); on<LoadHistoryShiftsEvent>(_onLoadHistoryShifts);
on<LoadAvailableShiftsEvent>(_onLoadAvailableShifts);
on<LoadShiftsForRangeEvent>(_onLoadShiftsForRange); on<LoadShiftsForRangeEvent>(_onLoadShiftsForRange);
on<FilterAvailableShiftsEvent>(_onFilterAvailableShifts); on<FilterAvailableShiftsEvent>(_onFilterAvailableShifts);
} }
@@ -53,15 +54,14 @@ class ShiftsBloc extends Bloc<ShiftsEvent, ShiftsState> {
final pendingResult = await getPendingAssignments(); final pendingResult = await getPendingAssignments();
final cancelledResult = await getCancelledShifts(); final cancelledResult = await getCancelledShifts();
// Initial available with defaults
final availableResult = await getAvailableShifts(const GetAvailableShiftsArguments());
emit(ShiftsLoaded( emit(ShiftsLoaded(
myShifts: myShiftsResult, myShifts: myShiftsResult,
pendingShifts: pendingResult, pendingShifts: pendingResult,
cancelledShifts: cancelledResult, cancelledShifts: cancelledResult,
availableShifts: _filterPastShifts(availableResult), availableShifts: const [],
historyShifts: const [], historyShifts: const [],
availableLoading: false,
availableLoaded: false,
historyLoading: false, historyLoading: false,
historyLoaded: false, historyLoaded: false,
searchQuery: '', searchQuery: '',
@@ -93,6 +93,28 @@ class ShiftsBloc extends Bloc<ShiftsEvent, ShiftsState> {
} }
} }
Future<void> _onLoadAvailableShifts(
LoadAvailableShiftsEvent event,
Emitter<ShiftsState> emit,
) async {
final currentState = state;
if (currentState is! ShiftsLoaded) return;
if (currentState.availableLoading || currentState.availableLoaded) return;
emit(currentState.copyWith(availableLoading: true));
try {
final availableResult =
await getAvailableShifts(const GetAvailableShiftsArguments());
emit(currentState.copyWith(
availableShifts: _filterPastShifts(availableResult),
availableLoading: false,
availableLoaded: true,
));
} catch (_) {
emit(currentState.copyWith(availableLoading: false));
}
}
Future<void> _onLoadShiftsForRange( Future<void> _onLoadShiftsForRange(
LoadShiftsForRangeEvent event, LoadShiftsForRangeEvent event,
Emitter<ShiftsState> emit, Emitter<ShiftsState> emit,
@@ -110,15 +132,15 @@ class ShiftsBloc extends Bloc<ShiftsEvent, ShiftsState> {
final pendingResult = await getPendingAssignments(); final pendingResult = await getPendingAssignments();
final cancelledResult = await getCancelledShifts(); final cancelledResult = await getCancelledShifts();
final availableResult =
await getAvailableShifts(const GetAvailableShiftsArguments());
emit(ShiftsLoaded( emit(ShiftsLoaded(
myShifts: myShiftsResult, myShifts: myShiftsResult,
pendingShifts: pendingResult, pendingShifts: pendingResult,
cancelledShifts: cancelledResult, cancelledShifts: cancelledResult,
availableShifts: _filterPastShifts(availableResult), availableShifts: const [],
historyShifts: const [], historyShifts: const [],
availableLoading: false,
availableLoaded: false,
historyLoading: false, historyLoading: false,
historyLoaded: false, historyLoaded: false,
searchQuery: '', searchQuery: '',
@@ -135,6 +157,10 @@ class ShiftsBloc extends Bloc<ShiftsEvent, ShiftsState> {
) async { ) async {
final currentState = state; final currentState = state;
if (currentState is ShiftsLoaded) { if (currentState is ShiftsLoaded) {
if (!currentState.availableLoaded && !currentState.availableLoading) {
add(LoadAvailableShiftsEvent());
return;
}
// Optimistic update or loading indicator? // Optimistic update or loading indicator?
// Since it's filtering, we can just reload available. // Since it's filtering, we can just reload available.

View File

@@ -12,6 +12,8 @@ class LoadShiftsEvent extends ShiftsEvent {}
class LoadHistoryShiftsEvent extends ShiftsEvent {} class LoadHistoryShiftsEvent extends ShiftsEvent {}
class LoadAvailableShiftsEvent extends ShiftsEvent {}
class LoadShiftsForRangeEvent extends ShiftsEvent { class LoadShiftsForRangeEvent extends ShiftsEvent {
final DateTime start; final DateTime start;
final DateTime end; final DateTime end;

View File

@@ -18,6 +18,8 @@ class ShiftsLoaded extends ShiftsState {
final List<Shift> cancelledShifts; final List<Shift> cancelledShifts;
final List<Shift> availableShifts; final List<Shift> availableShifts;
final List<Shift> historyShifts; final List<Shift> historyShifts;
final bool availableLoading;
final bool availableLoaded;
final bool historyLoading; final bool historyLoading;
final bool historyLoaded; final bool historyLoaded;
final String searchQuery; final String searchQuery;
@@ -29,6 +31,8 @@ class ShiftsLoaded extends ShiftsState {
required this.cancelledShifts, required this.cancelledShifts,
required this.availableShifts, required this.availableShifts,
required this.historyShifts, required this.historyShifts,
required this.availableLoading,
required this.availableLoaded,
required this.historyLoading, required this.historyLoading,
required this.historyLoaded, required this.historyLoaded,
required this.searchQuery, required this.searchQuery,
@@ -41,6 +45,8 @@ class ShiftsLoaded extends ShiftsState {
List<Shift>? cancelledShifts, List<Shift>? cancelledShifts,
List<Shift>? availableShifts, List<Shift>? availableShifts,
List<Shift>? historyShifts, List<Shift>? historyShifts,
bool? availableLoading,
bool? availableLoaded,
bool? historyLoading, bool? historyLoading,
bool? historyLoaded, bool? historyLoaded,
String? searchQuery, String? searchQuery,
@@ -52,6 +58,8 @@ class ShiftsLoaded extends ShiftsState {
cancelledShifts: cancelledShifts ?? this.cancelledShifts, cancelledShifts: cancelledShifts ?? this.cancelledShifts,
availableShifts: availableShifts ?? this.availableShifts, availableShifts: availableShifts ?? this.availableShifts,
historyShifts: historyShifts ?? this.historyShifts, historyShifts: historyShifts ?? this.historyShifts,
availableLoading: availableLoading ?? this.availableLoading,
availableLoaded: availableLoaded ?? this.availableLoaded,
historyLoading: historyLoading ?? this.historyLoading, historyLoading: historyLoading ?? this.historyLoading,
historyLoaded: historyLoaded ?? this.historyLoaded, historyLoaded: historyLoaded ?? this.historyLoaded,
searchQuery: searchQuery ?? this.searchQuery, searchQuery: searchQuery ?? this.searchQuery,
@@ -66,6 +74,8 @@ class ShiftsLoaded extends ShiftsState {
cancelledShifts, cancelledShifts,
availableShifts, availableShifts,
historyShifts, historyShifts,
availableLoading,
availableLoaded,
historyLoading, historyLoading,
historyLoaded, historyLoaded,
searchQuery, searchQuery,

View File

@@ -32,6 +32,9 @@ class _ShiftsPageState extends State<ShiftsPage> {
if (_activeTab == 'history') { if (_activeTab == 'history') {
_bloc.add(LoadHistoryShiftsEvent()); _bloc.add(LoadHistoryShiftsEvent());
} }
if (_activeTab == 'find') {
_bloc.add(LoadAvailableShiftsEvent());
}
} }
@override @override
@@ -61,6 +64,12 @@ class _ShiftsPageState extends State<ShiftsPage> {
final List<Shift> availableJobs = (state is ShiftsLoaded) final List<Shift> availableJobs = (state is ShiftsLoaded)
? state.availableShifts ? state.availableShifts
: []; : [];
final bool availableLoading = (state is ShiftsLoaded)
? state.availableLoading
: false;
final bool availableLoaded = (state is ShiftsLoaded)
? state.availableLoaded
: false;
final List<Shift> pendingAssignments = (state is ShiftsLoaded) final List<Shift> pendingAssignments = (state is ShiftsLoaded)
? state.pendingShifts ? state.pendingShifts
: []; : [];
@@ -122,6 +131,7 @@ class _ShiftsPageState extends State<ShiftsPage> {
UiIcons.search, UiIcons.search,
availableJobs availableJobs
.length, // Passed unfiltered count as badge? Or logic inside? Pass availableJobs. .length, // Passed unfiltered count as badge? Or logic inside? Pass availableJobs.
showCount: availableLoaded,
), ),
const SizedBox(width: 8), const SizedBox(width: 8),
_buildTab( _buildTab(
@@ -147,6 +157,7 @@ class _ShiftsPageState extends State<ShiftsPage> {
cancelledShifts, cancelledShifts,
availableJobs, availableJobs,
historyShifts, historyShifts,
availableLoading,
historyLoading, historyLoading,
), ),
), ),
@@ -164,6 +175,7 @@ class _ShiftsPageState extends State<ShiftsPage> {
List<Shift> cancelledShifts, List<Shift> cancelledShifts,
List<Shift> availableJobs, List<Shift> availableJobs,
List<Shift> historyShifts, List<Shift> historyShifts,
bool availableLoading,
bool historyLoading, bool historyLoading,
) { ) {
switch (_activeTab) { switch (_activeTab) {
@@ -175,6 +187,9 @@ class _ShiftsPageState extends State<ShiftsPage> {
initialDate: _selectedDate, initialDate: _selectedDate,
); );
case 'find': case 'find':
if (availableLoading) {
return const Center(child: CircularProgressIndicator());
}
return FindShiftsTab(availableJobs: availableJobs); return FindShiftsTab(availableJobs: availableJobs);
case 'history': case 'history':
if (historyLoading) { if (historyLoading) {
@@ -201,6 +216,9 @@ class _ShiftsPageState extends State<ShiftsPage> {
if (id == 'history') { if (id == 'history') {
_bloc.add(LoadHistoryShiftsEvent()); _bloc.add(LoadHistoryShiftsEvent());
} }
if (id == 'find') {
_bloc.add(LoadAvailableShiftsEvent());
}
}, },
child: Container( child: Container(
padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 8), padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 8),

View File

@@ -170,8 +170,21 @@ class _FindShiftsTabState extends State<FindShiftsTab> {
...filteredJobs.map( ...filteredJobs.map(
(shift) => Padding( (shift) => Padding(
padding: const EdgeInsets.only(bottom: 12), padding: const EdgeInsets.only(bottom: 12),
child: MyShiftCard( child: Column(
shift: shift, crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Debug shiftId: ${shift.id}',
style: const TextStyle(
fontSize: 10,
color: Color(0xFF94A3B8),
),
),
const SizedBox(height: 4),
MyShiftCard(
shift: shift,
),
],
), ),
), ),
), ),

View File

@@ -27,7 +27,7 @@ mutation updateApplicationStatus(
$status: ApplicationStatus $status: ApplicationStatus
$checkInTime: Timestamp $checkInTime: Timestamp
$checkOutTime: Timestamp $checkOutTime: Timestamp
$roleId: UUID! $roleId: UUID
) @auth(level: USER) { ) @auth(level: USER) {
application_update( application_update(
id: $id id: $id