(public sources: Array<CollectionRef | QueryRef>)
| 105 | export class UnionFrom extends BaseExpression { |
| 106 | public type = `unionFrom` as const |
| 107 | constructor(public sources: Array<CollectionRef | QueryRef>) { |
| 108 | super() |
| 109 | } |
| 110 | |
| 111 | get alias(): string { |
| 112 | return this.sources[0]?.alias ?? `` |
nothing calls this directly
no outgoing calls
no test coverage detected