()
| 163 | } |
| 164 | |
| 165 | continue(): Promise<unknown> { |
| 166 | return ( |
| 167 | this.#retryer?.continue() ?? |
| 168 | // continuing a mutation assumes that variables are set, mutation must have been dehydrated before |
| 169 | this.execute(this.state.variables!) |
| 170 | ) |
| 171 | } |
| 172 | |
| 173 | async execute(variables: TVariables): Promise<TData> { |
| 174 | const onContinue = () => { |
no test coverage detected