Files
Krow-workspace/dataconnect/schema/team.gql
José Salazar 29d5c78715 new team entity
2025-11-26 09:36:22 -05:00

23 lines
462 B
GraphQL

enum TeamOwnerRole {
ADMIN
PROCUREMENT
OPERATOR
SECTOR
CLIENT
VENDOR
WORKFORCE
}
type Team @table(name: "team") {
id: UUID! @default(expr: "uuidV4()")
teamName: String!
ownerId: UUID!
ownerName: String!
ownerRole: TeamOwnerRole!
favoriteStaff: String
blockedStaff: String
createdDate: Timestamp @default(expr: "request.time")
updatedDate: Timestamp @default(expr: "request.time")
createdBy: String @default(expr: "auth.uid")
}