16 lines
366 B
GraphQL
16 lines
366 B
GraphQL
type AttireOption @table(name: "attire_options") {
|
|
id: UUID! @default(expr: "uuidV4()")
|
|
itemId: String!
|
|
label: String!
|
|
description: String
|
|
imageUrl: String
|
|
isMandatory: Boolean
|
|
|
|
# Relations / ownership
|
|
vendorId: UUID
|
|
|
|
createdAt: Timestamp @default(expr: "request.time")
|
|
updatedAt: Timestamp @default(expr: "request.time")
|
|
createdBy: String
|
|
}
|