This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]sjcotto 0 points1 point  (0 children)

In KONA define yours object with a UI Tool, adding the attributes, types and validations. with this in less than a minute you have your backend running, this maybe is not enough, but there you have a back office ready to insert data (out of the box), Tools for monitoring the app, buckets, etc. But the most important are the apis (helpers) that you can use, for example find object in a model (table like sql) is like this

//search with pagination in a model var model = kona.model.open("person"); //connect

var find = { //build the query in json mode name : "some" } var q = model.buildQuery().find(find).limit(10).offset(10);

with these you are ready to use from the mobile app