( workspaceId: string, baseId: string )
| 157 | } |
| 158 | |
| 159 | export async function getOuterbaseQueryList( |
| 160 | workspaceId: string, |
| 161 | baseId: string |
| 162 | ) { |
| 163 | return requestOuterbase<OuterbaseAPIQueryListResponse>( |
| 164 | `/api/v1/workspace/${workspaceId}/query?${new URLSearchParams({ baseId })}` |
| 165 | ); |
| 166 | } |
| 167 | |
| 168 | export async function createOuterbaseQuery( |
| 169 | workspaceId: string, |
no test coverage detected