I can update and add to my featurelayer, but when I try to delete I get FaultCode 400 invalid parameters. I can't figure out what I am doing wrong.
var deleteGraphic:Graphic=new Graphic();
deleteGraphic.attributes={OBJECTID:logBook.selectedFeatures[0].attributes.OBJECTID};
const deletes:Array=[deleteGraphic];
logBook.applyEdits(null,null,deletes, new AsyncResponder(deleteComplete, deleteFail));