Im on a find situacion because the result of the Parse.query is just the id and I had other columns :(
Response of find:
[{"_objCount":0,"className":"DivorceCase","id":"8Ab15ASBX3"}]
Actual Code:
// Your corresponding keys
Parse.initialize("xxx", "xxx");
// For back4app applications
Parse.serverURL = 'https://parseapi.back4app.com'
var app = new Vue({
el: "#AttorneyCases",
data: {
DivorceCase :{},
},
mounted:function(){
new Parse.Query("DivorceCase").descending("createdAt").find()
.then((DivorceCaseResponse) => {
this.DivorceCase = DivorceCaseResponse;
})
}
})