mptr

Results 3 comments of mptr
trafficstars

At this point I realized pg-mem does also not support daterange type... I have it running now with ```ts db.public.registerEquivalentType({ name: 'daterange', equivalentTo: DataType.text, isValid: (val: string) => !!val.match(/^(\(|\[)(.*?),(.*?)(\)|\])$/), });...

Would it be an option to take metadata from other libraries like for example `class-validator` in to account to determine, wether a property is "known"? Or maybe implement a decorator...

Lets assume I use class-transformer to build Views for my REST-API. With the proposed mechanism i am able to use excludeAll as a default strategy for my views and am...