* Compiles the query.
()
| 29 | * Compiles the query. |
| 30 | */ |
| 31 | compile(): CompiledQuery<O> { |
| 32 | return this.#props.executor.compileQuery( |
| 33 | this.toOperationNode(), |
| 34 | this.#props.queryId, |
| 35 | ) |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Executes the query. |
no test coverage detected