Question

I recently started using Kinvey as a backend for my Android app. The documentation doesn't have a lot of info about Collections. I want to know if it's possible to create Collections using the same concepts applied to MySQL tables for example:

A Collection called Users will hold a User ID, Username, User Email

And another Collection called Items corresponding to users -> Item ID, Item Name, User ID.

Has anyone successfully created Collections like this using Kinvey?

kinvey.com

I have also contacted their support team about this bu no reply yet.

Was it helpful?

Solution

I'm an engineer at Kinvey and can help you at this. Kinvey uses a NoSQL store on the back end, so the concepts are a little different than those of a relational database system like MySql, but in general the same thought process can apply. A Collection is similar to a table, although it is Schema-less. This means that attributes (columns in MySql terms) can be added dynamically as needed. You simply create the collection, and then start saving data objects to it. For more info on our Android library specifically, take a look at our Data Store User Guide.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top