Files
Krow-workspace/backend/dataconnect/schema/teamHub.gql
2026-01-19 19:18:11 -05:00

18 lines
406 B
GraphQL

type TeamHub @table(name: "team_hubs") {
id: UUID! @default(expr: "uuidV4()")
teamId: UUID!
hubName: String!
address: String!
city: String!
state: String!
zipCode: String!
managerName: String!
isActive: Boolean! @default(expr: "true")
departments: Any
createdAt: Timestamp @default(expr: "request.time")
updatedAt: Timestamp @default(expr: "request.time")
createdBy: String
}