Internal object. Not currently exposed on the public REST API. The operations below describe the intended contract.
API operations
Data model
Attributes
Relationships
System-computed
- workspace_group_id โ generated server-side via gen_random_uuid() default and randomUUID() application-side default; unique constraint enforced in DB
- created_at โ set automatically by MikroORM onCreate: () => new Date()
- updated_at โ set automatically by MikroORM onCreate and onUpdate: () => new Date()
- deleted_at โ managed by the soft-delete pattern; set by the service layer on logical deletion, never by the user directly
Example
apps/api/src/database/entities/WorkspaceGroup.ts ยท domain: workspace ยท tier: Platform