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

18 lines
444 B
GraphQL

type ClientFeedback @table(name: "client_feedbacks") {
id: UUID! @default(expr: "uuidV4()")
businessId: UUID!
business: Business! @ref(fields: "businessId", references: "id")
vendorId: UUID!
vendor: Vendor! @ref(fields: "vendorId", references: "id")
rating: Int
comment: String
date: Timestamp
createdAt: Timestamp @default(expr: "request.time")
updatedAt: Timestamp @default(expr: "request.time")
createdBy: String
}