Date validations
const Product = attributes({
fabricationDate: {
type: Date,
default: () => Date.now()
},
expirationDate: {
type: Date,
min: { attr: 'fabricationDate' }
},
createdAt: {
type: Date,
nullable: true
}
})(class Product { });Last updated