| 313 | const specialKeysForUpdate = Object.keys(internalFields).filter(k => internalFields[k].masterWrite); |
| 314 | |
| 315 | const isSpecialUpdateKey = key => { |
| 316 | return specialKeysForUpdate.indexOf(key) >= 0; |
| 317 | }; |
| 318 | |
| 319 | function joinTableName(className, key) { |
| 320 | return `_Join:${key}:${className}`; |
no outgoing calls
no test coverage detected
searching dependent graphs…