Skip to content

Commit 92d0c88

Browse files
committed
Stable Version 0.11.17
1 parent 3a71735 commit 92d0c88

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/js-data-sql.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ module.exports =
115115
var relationTable = getTable(relationResourceConfig);
116116
var foreignId = relationTable + '.' + relationResourceConfig.idAttribute;
117117

118-
query.join(relationTable, localId, foreignId);
118+
query.leftJoin(relationTable, localId, foreignId);
119119
joinedTables.push(relationPath.join('.'));
120120
}
121121
} else if (relation.type === 'hasMany') {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-data-sql",
33
"description": "Postgres/MySQL/MariaDB/SQLite3 adapter for js-data.",
4-
"version": "0.11.16",
4+
"version": "0.11.17",
55
"homepage": "http://www.js-data.io/docs/dssqladapter",
66
"repository": {
77
"type": "git",

0 commit comments

Comments
 (0)