We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8852424 commit 739367bCopy full SHA for 739367b
packages/cubejs-schema-compiler/src/adapter/BaseQuery.js
@@ -2396,7 +2396,7 @@ export class BaseQuery {
2396
unsafeValue: () => paramValue
2397
});
2398
return methods(target)[name] ||
2399
- typeof propValue === 'object' && this.contextSymbolsProxy(propValue) ||
+ typeof propValue === 'object' && propValue !== null && this.contextSymbolsProxy(propValue) ||
2400
methods(propValue);
2401
}
2402
0 commit comments