computed Method - DML Reference

This method indicated that the property is a computed property. Computed properties are not stored in the database but are computed on the fly.

Example#

Code
1import { model } from "@medusajs/framework/utils"2
3const MyCustom = model.define("my_custom", {4 calculated_price: model.bigNumber().computed(),5 // ...6})7
8export default MyCustom
Was this page helpful?