Nested Objects can't retrieve dates #8445
Labels
state:released
Released as stable version
state:released-alpha
Released as alpha version
state:released-beta
Released as beta version
type:bug
Impaired feature or lacking behavior that is likely assumed
New Issue Checklist
Issue Description
Can save nested objects, can't retrieve dates.
Steps to reproduce
const test = new Parse.Object("Test");
test.set("objectTypeColumnName", { date: new Date(), otherValue: true });
await test.save();
const testRes = new Parse.Query("Test").first();
console.log(testRes.get("objectTypeColumnName"));
Expected
{
date: 2023-02-25T04:44:46.848Z,
otherValue: true
}
Actual
{
date: {},
otherValue: true
}
6.0.0
MacOS 13.2.1
local
Database
MongoDB
5.0.1
local
Client
JavaScript
4.0.1
The text was updated successfully, but these errors were encountered: