Fetch membercount?

Bbomi12/9/2022
const theGuild = await botclient.guilds.fetch(channels[i].server, { force: false, allowUnknownGuild: true }).catch(() => null)
console.log(theGuild.memberCount)

This returns undefined most of the time, the rest of the time it gives the membercount, any ideas why? Guessing when it's not loaded in the shard... But then how do I load it? .approximateMemberCount is the same.
Solution
Bbomi12/9/2022
Oh. Its needed to be forced for whatever reason
<E<3 execrate12/11/2022
Forced? Did you have a code?
Bbomi12/29/2022
Sorry for the late reply but yeah. In my code above where I have it set to force: false, it needs to be set to true to recieve membercount information
<E<3 execrate12/29/2022
Oh okey
<E<3 execrate12/29/2022
Thxxx