(item: unknown)
| 529 | ? this.extractPolymorphicJoinColumnValues(entity, prop) |
| 530 | : this.extractJoinColumnValues(entity, prop); |
| 531 | const expandItem = (item: unknown) => { |
| 532 | const entity = Reference.isReference(item) ? item.unwrap() : item; |
| 533 | return Utils.isEntity(entity) ? expand(entity) : item; |
| 534 | }; |
| 535 | const w = where[k]; |
| 536 | const expanded = expandItem(w); |
| 537 |
nothing calls this directly
no test coverage detected