Hi Support Team,
I am currently migrating my project to Forest Admin Agent, and I encountered an unexpected behavior regarding how nested fields are represented. Specifically, I noticed that nested fields in my schema appear with triple @@@
instead of the standard dot .
notation.
For example, in my MongoDB schema, I have the following structure:
const UserSchema = new Schema({
username: String,
email: String,
address: {
street: String,
city: String,
},
});
However, when I try to reference address.city
in Forest Admin, I receive the following error message:
Error during Forest Admin initialization: MissingFieldError: The 'users.address.city' field was not found. Available fields are: [_id, username, email, createdAt, updatedAt, address@@@street, address@@@city, metadata]. Please check if the field name is correct.
From this, it appears that Forest Admin represents address.city
as address@@@city
instead of address.city
.
I attempted to create a smart field using dot notation, but it resulted in an error:
collection.addField("cityName", {
columnType: "String",
dependencies: ["address.city"], // Using dot notation
getValues: (records) => records.map((record) => record["address.city"] || null),
});
Since address.city
is not recognized, I assume that dependencies: ["address@@@city"]
would be required instead.
I reviewed the Forest Admin documentation, but I couldn’t find any explanation for this @@@
notation.
Could you please clarify:
- Is the use of triple
@@@
in place of dot notation the expected behavior for nested fields in MongoDB? - If so, is there an official reference explaining this in the documentation?
- Is there a way to configure Forest Admin to use dot notation instead?
Looking forward to your response.