I'm aware that this question has been asked before, but I'm yet to find a solid answer for the newest version of Discord.JS. I'd like to find all of the members in the guild hostGuild that have the role 'xyz'.
client.on('ready', () => {
const hostGuild = client.guilds.cache.get('822234110369595443');
//get users with role 'xyz'
}
});