typeorm 0.3.4 → 0.3.5-dev.b1a0107

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.
@@ -2050,7 +2050,7 @@ class SelectQueryBuilder extends QueryBuilder_1.QueryBuilder {
2050
2050
  }
2051
2051
  buildSelect(select, metadata, alias, embedPrefix) {
2052
2052
  for (let key in select) {
2053
- if (select[key] === undefined)
2053
+ if (select[key] === undefined || select[key] === false)
2054
2054
  continue;
2055
2055
  const propertyPath = embedPrefix ? embedPrefix + "." + key : key;
2056
2056
  const column = metadata.findColumnWithPropertyPathStrict(propertyPath);