getWalletTokenTransfers not returning cursor?

Hi,

When looking at the api docs: https://docs.moralis.io/reference/getwallettokentransfers

I can see that there’s data besides results,

"total": 33,
  "page": 0,
  "page_size": 20,
  "cursor": "somelongcursor",
...

Although - when I run this:

		const moralisResponse = await Moralis.EvmApi.token.getWalletTokenTransfers({
			address,
			limit,
			chain,
			cursor,
		});

		if (moralisResponse) {
			response.json(moralisResponse);
			return;
		}

I only receive the results back? What to do? Don’t want to fetch all the transfers at once, and also can’t really do much else as it is now?

there should be a syntax with .next that should get you the next page