Learning Resources

nullable Method - API Reference

This method indicates that a property's value can be null.

Example#

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