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 80e00fc commit d02d032Copy full SHA for d02d032
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "strontium",
3
- "version": "2.4.12",
+ "version": "2.4.13",
4
"description": "Strontium is a TypeScript toolkit for High Performance API servers built for Production not Projects.",
5
"main": "lib/src/index.js",
6
"types": "lib/src/index.d.ts",
src/query/drivers/sql/TableRepository.ts
@@ -89,7 +89,7 @@ export abstract class TableRepository<
89
parameters
90
)
91
92
- let results = await this.store.query<{ [key: string]: any }>(
+ let results = await connection.query<{ [key: string]: any }>(
93
processedQuery,
94
processedParameters
95
0 commit comments