client = CAVEclient("minnie65_phase3_v1")
root_ids = [
864691136137805181,
864691136237725199,
864691135778700477,
864691137055175542,
]
timestamps = client.chunkedgraph.get_root_timestamps(root_ids, latest=True)
print(timestamps)
gives
[datetime.datetime(2024, 10, 25, 20, 13, 10, 925000, tzinfo=<UTC>)
datetime.datetime(2024, 12, 16, 7, 14, 45, 712000, tzinfo=<UTC>)
datetime.datetime(2024, 12, 20, 21, 1, 7, 458073, tzinfo=<UTC>)
datetime.datetime(1969, 12, 31, 23, 59, 59, 999000, tzinfo=<UTC>)]
Note that for the last ID the year is 1969...
But if I just query that one,
client = CAVEclient("minnie65_phase3_v1")
root_id = 864691137055175542
client.chunkedgraph.get_root_timestamps(root_id, latest=True)
I get something reasonable
[datetime.datetime(2024, 10, 15, 22, 17, 53, 503000, tzinfo=<UTC>)]
gives
Note that for the last ID the year is 1969...
But if I just query that one,
I get something reasonable