Remove 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 remove.
Remove
Warning
DO NOT remove category 1, or the output might not be as expected!
db.category.deleteOne({ id: <id> })