Files
Krow-workspace/legacy/dataconnect-v1/schema/category.gql
2026-03-18 15:04:18 +01:00

11 lines
286 B
GraphQL

#courses categories
type Category @table(name: "categories") {
id: UUID! @default(expr: "uuidV4()")
categoryId: String!
label: String!
icon: String
createdAt: Timestamp @default(expr: "request.time")
updatedAt: Timestamp @default(expr: "request.time")
createdBy: String
}