Function
dmmfToRuntimeDataModel
packages/client-common/src/runtimeDataModel.ts:23–29
· packages/client-common/src/runtimeDataModel.ts::dmmfToRuntimeDataModel
(dmmfDataModel: DMMF.Datamodel)
Source from the content-addressed store, hash-verified
| 21 | } |
| 22 | |
| 23 | export function dmmfToRuntimeDataModel(dmmfDataModel: DMMF.Datamodel): RuntimeDataModel { |
| 24 | return { |
| 25 | models: buildMapForRuntime(dmmfDataModel.models), |
| 26 | enums: buildMapForRuntime(dmmfDataModel.enums), |
| 27 | types: buildMapForRuntime(dmmfDataModel.types), |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Minimal version of the runtime datamodel for the Client to work |