Refactor staff data models to use List<String> for skills and industries

- Updated GetStaffByIdStaff, GetStaffByUserIdStaffs, ListStaffStaffs, and UpdateStaffVariablesBuilder classes to replace AnyValue with List<String> for skills and industries.
- Modified JSON serialization and deserialization logic accordingly.
- Adjusted ExperienceRepositoryImpl to handle List<String> for industries and skills.
- Updated GraphQL mutations and schema to reflect changes in data types for skills and industries.
This commit is contained in:
Achintha Isuru
2026-01-27 14:05:32 -05:00
parent 157ace0e77
commit 8e7caeed48
12 changed files with 17347 additions and 17327 deletions

View File

@@ -61,8 +61,8 @@ type Staff @table(name: "staffs") {
# Profile
bio: String
skills: Any #changed it for staffRole
industries: Any
skills: [String] #changed it for staffRole
industries: [String]
preferredLocations: [String]
maxDistanceMiles: Int
languages: Any