router.get('/:bbid/relationships',
    makeEntityLoader('Author', utils.relationshipsRelations, authorError),
    async (req, res) => {
        const authorRelationshipList = await getEntityRelationships(res.locals.entity);
        return res.status(200).send(authorRelationshipList);