Is there a way to retrieve a geopoint by only objectID?
In short what I’m trying to do is this:
My app client can update geopoint through my custom service api (I don’t want to give client full permission to update or remove geopoints).
My service logic will compare uploaded geopoint update with original geopoint to determine if the request is legit(for example if point moved too far).
Therefore I need a way to grab the original geopoint by their objectID to compare with the update
Here are the stuff I tried that didn’t work :
Backendless.Data.of( “GeoPoints” ).findById( objectId )
Backendless.Persistence.of( Backendless.GeoPoint ).findById(ID)
var geoQuery = {
objectId: name
}
Backendless.Geo.find(geoQuery)