Files
Krow-workspace/legacy/dataconnect-v1/schema/roleCategory.gql
2026-03-18 15:04:18 +01:00

21 lines
419 B
GraphQL

enum RoleCategoryType {
KITCHEN_AND_CULINARY
CONCESSIONS
FACILITIES
BARTENDING
SECURITY
EVENT_STAFF
MANAGEMENT
TECHNICAL
OTHER
}
type RoleCategory @table(name: "role_categories") {
id: UUID! @default(expr: "uuidV4()")
roleName: String!
category: RoleCategoryType!
createdAt: Timestamp @default(expr: "request.time")
updatedAt: Timestamp @default(expr: "request.time")
createdBy: String
}