Learning Resources

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#

Code
1import { model } from "@medusajs/utils"2
3const User = model.define("User", {4  id: model.id().primaryKey(),5  // ...6})7
8export default User

Parameters#

optionsobjectOptional
Was this page helpful?