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 26a89c3 commit c2c3f0fCopy full SHA for c2c3f0f
src/literest/index.ts
@@ -164,12 +164,12 @@ export class LiteREST {
164
private async executeOperation(
165
queries: { sql: string; params: any[] }[]
166
): Promise<{ result?: any; error?: string | undefined; status: number }> {
167
- const results: any[] = (await executeTransaction(
168
- queries,
169
- false,
170
- this.dataSource,
171
- this.config
172
- )) as any[];
+ const results: any[] = (await executeTransaction({
+ queries,
+ isRaw: false,
+ dataSource: this.dataSource,
+ config: this.config
+ })) as any[];
173
return {
174
result: results?.length > 0 ? results[0] : undefined,
175
status: 200,
0 commit comments