pqb 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/queryMethods/columnInfo.ts +1 -1
- package/src/queryMethods/join.ts +1 -1
- package/src/queryMethods/then.ts +1 -2
- package/src/queryMethods/where.test.ts +2 -2
- package/src/relations.ts +1 -0
package/dist/index.js
CHANGED
|
@@ -3962,7 +3962,7 @@ const _join = (q, type, args) => {
|
|
|
3962
3962
|
joinKey = first;
|
|
3963
3963
|
const relation = q.relations[joinKey];
|
|
3964
3964
|
if (relation) {
|
|
3965
|
-
parsers = relation.
|
|
3965
|
+
parsers = relation.query.query.parsers || relation.query.columnsParsers;
|
|
3966
3966
|
} else {
|
|
3967
3967
|
const shape = (_a = q.query.withShapes) == null ? void 0 : _a[first];
|
|
3968
3968
|
if (shape) {
|