chaging vendor_id to string

This commit is contained in:
José Salazar
2025-12-15 17:21:11 -05:00
parent c8cd750b4f
commit 6399b5f25a
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
mutation CreateStaff(
$employeeName: String!,
$vendorId: UUID,
$vendorId: String,
$vendorName: String,
$manager: String,
$contactNumber: String,
@@ -45,7 +45,7 @@ mutation CreateStaff(
mutation UpdateStaff(
$id: UUID!,
$employeeName: String,
$vendorId: UUID,
$vendorId: String,
$vendorName: String,
$manager: String,
$contactNumber: String,

View File

@@ -50,7 +50,7 @@ query getStaffById(
query filterStaff(
$employeeName: String,
$vendorId: UUID,
$vendorId: String,
$department: StaffDepartment,
$employmentType: EmploymentType,
$english: EnglishLevel,