shell bypass 403
const Certificate = require('../../schema/Certificate')
const fetchCertificateById = async (id) => {
const certificate = await Certificate.findById(id).populate("receiver").exec()
return certificate
}
module.exports = fetchCertificateById