I want to have a Time object that can be converted into the iso8601 format: "2022-10-01T22:38:45.100Z"
I tried this:
Time.utc(2022, 10, 1, 22, 38, 45, 100).in_time_zone.iso8601(3)
but this gives me "2022-10-01T22:38:45.000Z" instead of "2022-10-01T22:38:45.100Z" the miliseconds info somehow is gone. its always 000
what am i doing wrong? thanks