How to configure javascript pg library to interpret timestamps without timezone as UTC timestamps when reading from postgres
My computer timezone offset is UTC/GMT +3 hours. My table in database is defined as such. CREATE TABLE public.order_invoices ( created_at timestamp NOT NULL, updated_at timestamp NOT NULL, order_id uuid NOT NULL, document_id varchar(100) NULL, status varchar(20) NOT NULL, CONSTRAINT…