I am trying to read the date/time to know what was the last time this row in the table was updated. There is already one field created by default in the table of my custom class. I can access and see all other custom attributes. But cant gets any result for “updatedAt”.
Following code:
const TestUser = Moralis.Object.extend("TestUser");
const query = new Moralis.Query(TestUser);
const logger=Moralis.Cloud.getLogger();
const results = await query.find();
logger.info(results[0].attributes.Score); // this line works perfect and fine
logger.info(results[0].attributes.updatedAT); // this never works, cant get it