(...queryPartsToAdd: string[])
| 129 | } |
| 130 | |
| 131 | append(...queryPartsToAdd: string[]): this { |
| 132 | this.queryParts.push(...queryPartsToAdd); |
| 133 | return this; |
| 134 | } |
| 135 | |
| 136 | prepend(...queryPartsToAdd: string[]): this { |
| 137 | this.queryParts.unshift(...queryPartsToAdd); |
no outgoing calls
no test coverage detected