Frozen Parsing Scheme

I started using the parse-server npm module.

It all starts fine, but when I try to make REST requests to create new objects in a new class, I get the following response:

{"code":107,"error":"schema is frozen, cannot add: AccountTest2"} 

I tried this problem, but I almost see no results.

Thanks!

+5
source share
1 answer

I was able to fix this by dropping

 _SCHEMA 

from MongoDB using Robomongo .

I'm honestly not 100% sure what the _SCHEMA collection is for (it looks like it just stores / caches the standard / typical schema for your objects, so when you change the schema of an object, we get this frozen error); if someone could enlighten us in this area, it would be great :)

+1
source

All Articles