I'm not sure why this conditional is omitting keys that begin with an underscore, but it is. Custom data types in Postgres can be prefixed with _, e.g. _email_type. This results in those keys always being filtered from the query.
I built a version of this locally with this check removed and I'm not seeing any issues. Is there some rationale I'm missing?
I'm not sure why this conditional is omitting keys that begin with an underscore, but it is. Custom data types in Postgres can be prefixed with
_
, e.g._email_type
. This results in those keys always being filtered from the query.I built a version of this locally with this check removed and I'm not seeing any issues. Is there some rationale I'm missing?