* the history record. Otherwise if a String is passed, it is resolved
* relative to the history record's timezone.
*/
public HGrid hisRead(HRef id, Object range) {
HGridBuilder b = new HGridBuilder();
b.addCol("id");
b.addCol("range");
b.addRow(new HVal[] { id, HStr.make(range.toString()) });
HGrid req = b.toGrid();
HGrid res = call("hisRead", req);
return res;