The above is the returned object from firebase and I do this:
JSON.stringify(data) // where data is the returned object
Then I get the error: TypeError: Converting circular structure to JSON
How to properly handle an object response like that from firebase?
This answer paints a picture of what is happening, however, in the case of firebase, how to go about it?