( select: Record<string, any>, sourceAlias: string, sourcePath: Array<string>, )
| 1549 | } |
| 1550 | |
| 1551 | function findProjectedSourceIncludePaths( |
| 1552 | select: Record<string, any>, |
| 1553 | sourceAlias: string, |
| 1554 | sourcePath: Array<string>, |
| 1555 | ): Array<ProjectedSourceIncludePath> { |
| 1556 | const targetPath = [sourceAlias, ...sourcePath] |
| 1557 | return findProjectedIncludePaths(select, targetPath) |
| 1558 | } |
| 1559 | |
| 1560 | function findProjectedResultIncludePaths( |
| 1561 | select: Record<string, any>, |
no test coverage detected