Skip to content
Snippets Groups Projects
Commit 533c2270 authored by Tom Robinson's avatar Tom Robinson
Browse files

Fix exception when special_type=fk but target=null

parent 8f91bd31
No related branches found
No related tags found
No related merge requests found
......@@ -295,7 +295,7 @@ var Query = {
results.fields = filterFn(fields).filter((f) => !usedFields[f.id] && (f.special_type !== "fk" || !includeJoins));
results.count += results.fields.length;
if (includeJoins) {
results.fks = fields.filter((f) => f.special_type === "fk").map((joinField) => {
results.fks = fields.filter((f) => f.special_type === "fk" && f.target).map((joinField) => {
var targetFields = filterFn(joinField.target.table.fields).filter((f) => (!Array.isArray(f.id) || f.id[0] !== "aggregation") && !usedFields[f.id]);
results.count += targetFields.length;
return {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment