In the tutorial, there is an example. When I type "curl -X GET
-H āX-Parse-Application-Id: APPLICATION_IDā http://localhost:1337/parse/classes/GameScore/2ntvSpRGIK
", I can save this object.
Then, when I type ācurl -X GET
-H āX-Parse-Application-Id: APPLICATION_IDā http://localhost:1337/parse/classes/GameScoreā, I can retrieve this object.
However, where is this object saved? Is it saved in the database? If it is saved in the database, which table?
Sorry that it is my mistake. The first command should be ācurl -X POST
-H āX-Parse-Application-Id: APPLICATION_IDā
-H āContent-Type: application/jsonā
-d ā{āscoreā:123,āplayerNameā:āSean Plottā,ācheatModeā:false}ā http://localhost:1337/parse/classes/GameScoreā. It is a post command. Thanks
Yes. The data is saved in the database. By default Parse is schemaless, meaning you donāt need to create the schema beforehand. So even if you delete your database, when you send your first create request, the schema will be automatically created again and the data will be stored.