MCPcopy Index your code
hub / github.com/outerbase/studio / createOuterbaseQuery

Function createOuterbaseQuery

src/outerbase-cloud/api.ts:168–178  ·  view source on GitHub ↗
(
  workspaceId: string,
  baseId: string,
  options: { source_id: string; name: string; baseId: string; query: string }
)

Source from the content-addressed store, hash-verified

166}
167
168export async function createOuterbaseQuery(
169 workspaceId: string,
170 baseId: string,
171 options: { source_id: string; name: string; baseId: string; query: string }
172) {
173 return requestOuterbase<OuterbaseAPIQuery>(
174 `/api/v1/workspace/${workspaceId}/query?${new URLSearchParams({ baseId })}`,
175 "POST",
176 options
177 );
178}
179
180export async function deleteOuterbaseQuery(
181 workspaceId: string,

Callers 1

createDocMethod · 0.90

Calls 1

requestOuterbaseFunction · 0.85

Tested by

no test coverage detected