(idFields: FieldDef[])
| 2135 | } |
| 2136 | |
| 2137 | private makeIdKey(idFields: FieldDef[]) { |
| 2138 | return idFields.map((idf) => idf.name).join(this.idDivider); |
| 2139 | } |
| 2140 | |
| 2141 | private makeDefaultIdKey(idFields: FieldDef[]) { |
| 2142 | // TODO: support `@@id` with custom name |
no outgoing calls
no test coverage detected