Where are the data saved?

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?

Moreover, is this called LiveQuery?

No this is not live query. Data saved to GameScore table. And itā€™s saved to database(MongoDb or postgresql depends on your configuration)

And your command is wrong. Your first command is to get already saved object. Because you specify object is after GameScore

And you should create new object with second command. But request type should be POST not GET.

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

But, I have deleted all my databases. The post/get still work. Are you sure the data are saved in the database?

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.

Thanks. I find the table in the database.