Files
Krow-workspace/dataconnect/schema/teamHub.gql
2025-11-26 11:45:43 -05:00

10 lines
298 B
GraphQL

type TeamHub @table(name: "team_hubs") {
id: UUID! @default(expr: "uuidV4()")
teamId: UUID!
hubName: String!
departments: String
createdDate: Timestamp @default(expr: "request.time")
updatedDate: Timestamp @default(expr: "request.time")
createdBy: String @default(expr: "auth.uid")
}