Due to a bug in Dashboard I need to be able to do updates to attributes without an objectid. So I changed my services to be "Supports ApplyEdits With Global Ids: true" but every time I try and do an applyEdits update of a feature with the globalid the error I am getting is "ObjectId field is missing."?????
Anyone have a suggestions?
Code below would work with Objectid
var gUPDATE = {attributes: {GlobalID: "{A40352E3-0C1E-4A65-AAE7-106B4D79F131}", STATUS: "Pending"}};
featureLayer.applyEdits(null, [gUPDATE ], null, function (response) {
console.log("done");
});