do {
const response = await Moralis.Web3API.account.getNFTs({
chain: "eth",
address: "0xd6a984153acb6c9e2d788f08c2465a1358bb89a7",
limit: 100,
cursor: cursor,
});
cursor = response.cursor;
} while (cursor != "" && cursor != null);
when I run this code, sometimes the cursor stops and it returns a 504 error.