* Replaces an IncludesSubquery entry in the select object with a null Value placeholder. * This ensures processSelect() doesn't encounter it.
( select: Record<string, any>, path: Array<string>, )
| 1922 | * This ensures processSelect() doesn't encounter it. |
| 1923 | */ |
| 1924 | function replaceIncludesInSelect( |
| 1925 | select: Record<string, any>, |
| 1926 | path: Array<string>, |
| 1927 | ): Record<string, any> { |
| 1928 | return replaceIncludesInSelectValue(select, path, new ValClass(null)).value |
| 1929 | } |
| 1930 | |
| 1931 | function replaceIncludesInSelectValue( |
| 1932 | value: any, |
no test coverage detected