( workspaceId: string, queryId: string )
| 178 | } |
| 179 | |
| 180 | export async function deleteOuterbaseQuery( |
| 181 | workspaceId: string, |
| 182 | queryId: string |
| 183 | ) { |
| 184 | return requestOuterbase( |
| 185 | `/api/v1/workspace/${workspaceId}/query/${queryId}`, |
| 186 | "DELETE" |
| 187 | ); |
| 188 | } |
| 189 | |
| 190 | export async function updateOuterbaseQuery( |
| 191 | workspaceId: string, |
no test coverage detected