basically I tried making a command to set a muterole, which is using quick.db. Basically using o.set muterole @role should put the role into the db and show in the settings panel.
Instead of showing in the settings panel when doing:
let muterole = await db.fetch(`muterole_${message.guild.id}`)
It will just say [ object Object ] in the section.
So I tried doing
let mrdb = await db.fetch(`muterole_${message.guild.id}`)
let muterole = message.guild.roles.cache.get(mrdb)
And then it appeared as undefined.
How can I make it so using quick.db I can make the muterole process through the Database properly.
(sorry if unclear)