We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8535629 commit 57f393bCopy full SHA for 57f393b
src/services/api.ts
@@ -465,10 +465,11 @@ export class YdbEmbeddedAPI extends AxiosWrapper {
465
// FIXME: after backend fix
466
const {schema, ...rest} = params;
467
468
+ // FIXME: base64 is passed both to params and body to work on versions before and after 24-3
469
return this.post<QueryAPIResponse<Action, Schema> | ErrorResponse>(
470
this.getPath('/viewer/json/query'),
471
{...rest, base64},
- {schema},
472
+ {schema, base64},
473
{
474
concurrentId,
475
timeout: params.timeout,
0 commit comments