in lib/common/utils/statementBuilder.util.ts [157:163]
private isDate(arg: any): arg is Date {
arg = arg as Date;
if (!arg.year || arg.year === null) return false;
if (!arg.month || arg.month === null) return false;
if (!arg.day || arg.day === null) return false;
return true;
}