How do i access the token_id value in the Moralis.cloud.afterSave?
Moralis.Cloud.afterSave("EthNFTOwners", async (request) => {
const ethAddress = await request.object.get("owner_of");
logger.info("ethAddress", ethAddress);
const tokenId = await request.object.get("token_id");
logger.info("tokenId", tokenId);
}
Looking in the logger the tokenId is null
what am i doing wrong?