moving dataconnect to dev
This commit is contained in:
20
backend/dataconnect/schema/roleCategory.gql
Normal file
20
backend/dataconnect/schema/roleCategory.gql
Normal file
@@ -0,0 +1,20 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user