So, I successfully saved all map graphics (sketches/pushpins) on the server but was having no luck re-drawing them back on the map.
var sk = new esri.Graphic(sketches);
map.getLayer("importSketchLayer").add(sk);
and a sample sk ={"geometry":{"rings":[[[2479931.879726085,7106033.410997431],[2480065.4169330294,7106050.981682555],[2480110.222180096,7105950.828777347],[2480014.461946169,7105920.958612636],[2479931.879726085,7106033.410997431]]],"spatialReference":{"wkid":2276}},"attributes":{"sketchType":"shape"},"symbol":{"color":[255,255,102,255],"outline":{"color":[192,0,0,255],"width":0.75,"type":"esriSLS","style":"esriSLSSolid"},"type":"esriSFS","style":"esriSFSSolid"}}
Am I missing something?