* Returns raw interpolated query string with all the parameters inlined.
()
| 2337 | * Returns raw interpolated query string with all the parameters inlined. |
| 2338 | */ |
| 2339 | getFormattedQuery(): string { |
| 2340 | const query = this.toQuery(); |
| 2341 | return this.platform.formatQuery(query.sql, query.params); |
| 2342 | } |
| 2343 | |
| 2344 | /** |
| 2345 | * @internal |
no test coverage detected