( query: QueryBuilder<TContext>, )
| 750 | } |
| 751 | |
| 752 | export function toArray<TContext extends Context>( |
| 753 | query: QueryBuilder<TContext>, |
| 754 | ): ToArrayWrapper<GetRawResult<TContext>> { |
| 755 | return new ToArrayWrapper(query) |
| 756 | } |
| 757 | |
| 758 | function caseWhenHasOnlyExpressionValues(args: Array<CaseWhenValue>): boolean { |
| 759 | const valueIndexes = getCaseWhenValueIndexes(args.length) |
no outgoing calls
searching dependent graphs…