moving dataconnect to dev
This commit is contained in:
15
backend/dataconnect/schema/attireOption.gql
Normal file
15
backend/dataconnect/schema/attireOption.gql
Normal file
@@ -0,0 +1,15 @@
|
||||
type AttireOption @table(name: "attire_options") {
|
||||
id: UUID! @default(expr: "uuidV4()")
|
||||
itemId: String!
|
||||
label: String!
|
||||
icon: String
|
||||
imageUrl: String
|
||||
isMandatory: Boolean
|
||||
|
||||
# Relations / ownership
|
||||
vendorId: UUID
|
||||
|
||||
createdAt: Timestamp @default(expr: "request.time")
|
||||
updatedAt: Timestamp @default(expr: "request.time")
|
||||
createdBy: String
|
||||
}
|
||||
Reference in New Issue
Block a user