Rename Category
Log into mongodb
mongosh mongodb://<username>:<password>@localhost:30000/metahkg
List the categories
db.category.find().pretty()
Find the id of the one you want to rename.
Rename
Warning
If you wish to rename category 1, please use an appropriate name (e.g. General).
db.category.updateOne({ id: <id> }, { $set: { name: "<new-category-name>" } })