router.get('/:bbid',
    makeEntityLoader('Author', authorBasicRelations, authorError),
    async (req, res) => {
        const authorBasicInfo = await getAuthorBasicInfo(res.locals.entity);
        return res.status(200).send(authorBasicInfo);