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 ce5f469 commit 6eebf8bCopy full SHA for 6eebf8b
src/sdk/data-cloud-api.ts
@@ -35,7 +35,7 @@ export class DataCloudApiImpl implements DataCloudApi {
35
retry: {
36
limit: 1,
37
},
38
- json: sql,
+ body: JSON.stringify({ sql }),
39
};
40
const response = await this.request.request(url, opts);
41
return response as DataCloudQueryResponse;
@@ -72,7 +72,7 @@ export class DataCloudApiImpl implements DataCloudApi {
72
73
74
75
- json: data,
+ body: JSON.stringify(data),
76
77
78
return response as DataCloudUpsertResponse;
0 commit comments