@ronin/compiler 0.11.2 → 0.11.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -1256,7 +1256,7 @@ var handleSelecting = (models, model, statementParams, instructions, options) =>
|
|
1256
1256
|
}
|
1257
1257
|
const expandColumns = isJoining && options?.expandColumns;
|
1258
1258
|
if (expandColumns) {
|
1259
|
-
instructions.selecting = model.fields.map((field) => field.slug);
|
1259
|
+
instructions.selecting = model.fields.filter((field) => !(field.type === "link" && field.kind === "many")).map((field) => field.slug);
|
1260
1260
|
}
|
1261
1261
|
if (instructions.selecting) {
|
1262
1262
|
const usableModel = expandColumns ? { ...model, tableAlias: model.tableAlias || model.table } : model;
|