(...queryPartsToRemove: string[])
| 124 | } |
| 125 | |
| 126 | remove(...queryPartsToRemove: string[]): this { |
| 127 | this.queryParts = this.getQueryParts().filter(queryPart => !queryPartsToRemove.includes(queryPart)); |
| 128 | return this; |
| 129 | } |
| 130 | |
| 131 | append(...queryPartsToAdd: string[]): this { |
| 132 | this.queryParts.push(...queryPartsToAdd); |
no test coverage detected