(connectionId: string, query: QueryRequest)
| 151 | |
| 152 | // Query Execution |
| 153 | async executeQuery(connectionId: string, query: QueryRequest): Promise<QueryResult> { |
| 154 | const response = await apiClient.post<BackendResponse<QueryResult>>(`${this.baseUrl}/connections/${connectionId}/query`, query); |
| 155 | return response.data; |
| 156 | } |
| 157 | |
| 158 | // Health Check |
| 159 | async healthCheck(): Promise<{ status: string; timestamp: string }> { |
no outgoing calls
no test coverage detected