Currently, I am in the process of constructing a string within Meteor to delve deeper into my MongoDB data.
The structure of my data can be seen here:
In my JavaScript code for Meteor projects, I have formulated the string as shown below:
const concentrationTier1 = MyCollection.findOne({_id: "85gh43tnb23v4"}).BILL.Sovereign.USD.Short.Low.High.N.ARGENTINA.IssueName00006.ARARGE5203E7;
console.log(concentrationTier1);
However, upon checking my console, I was greeted with this output:
I am now wondering how I can incorporate [Object] into my string to access the subsequent part of the data.
I have attempted using .[Object], .Object, .0, among others, but without success.
If anyone could provide assistance with this issue, it would be greatly appreciated.
Thank you,
G