1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16// Create Tatooine const Planet = Parse.Object.extend('Planet'); const tatooine = new Planet(); tatooine.set('name', 'Tatooine'); tatooine.set('population', 200000); await tatooine.save(); // Create Luke Skywalker const Character = Parse.Object.extend('Character'); const lukeSkywalker = new Character(); lukeSkywalker.set('name', 'Luke Skywalker'); lukeSkywalker.set('birthYear', "19BBY"); lukeSkywalker.set('homeworld', tatooine); await lukeSkywalker.save();
Need more information about the functions?
A ReactJS Slack clone template with real-time updates, relational queries, and authentication.
View CodeA Flutter starter kit for user sign-up and login to speed up your app development.
View CodeA React Native template for user sign-up and login using the Parse.User class.
View Code