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

12 lines
294 B
GraphQL

type Hub @table(name: "hubs") {
id: UUID! @default(expr: "uuidV4()")
name: String!
locationName: String
address: String
nfcTagId: String
ownerId: UUID!
createdAt: Timestamp @default(expr: "request.time")
updatedAt: Timestamp @default(expr: "request.time")
createdBy: String
}