id Property Method - API Reference
This method defines an automatically generated string ID property.
You must use the "primaryKey" modifier to mark the property as the
primary key.
Example#
1import { model } from "@medusajs/framework/utils"2
3const User = model.define("User", {4 id: model.id().primaryKey(),5 6})7
8export default User
Parameters#
Was this page helpful?