You cannot change the response you receive from the server. Also, we cannot just remove the meta field since it is used in several operations with relations. But you definitely can just ignore this field when working with the response, or even remove it when you form some object from the json.
I am using backendless with an arduino.Some json parser which is popular for arduino does not parse that json. But if I remove meta tag it is OK. Probably it gets confused because of the curly braces in the meta tag.I could find another way. Thanks.
I’m not from the dev team, but I’m surprised by “You cannot change the response you receive from the server”, cause actually you can - in Business Logic event “afterFind”.
Backendless.ServerCode.Persistence.afterFind('YOUR_TABLE_NAME', function(req, res) {
var data = res.result.data;
for (var i in data){
delete data.__meta;
}
});
Although “you can” doesn’t mean you should, and meta erasing will broke other operations, but maybe it will be ok in your case, since you probably just one time receiving, without updating back (I guess)