Files
Krow-workspace/backend/dataconnect/schema/category.gql
2026-01-19 19:18:11 -05: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
}