Hello, I’m trying to get all the NFTs owned by a specific account.
The following code
const NFTModel = Moralis.Object.extend("EthNFTOwners")
const query = new Moralis.Query(NFTModel)
query.limit(10000)
query.equalTo("owner_of", walletAddress)
console.log(await query.count())
returns 536 results, but the dedicated Web3 API returns 773 results (the latter bein the correct value).
I’ve also updated the server, no improvements.
Am I misunderstanding something? Can somebody help?
Thank you