https://i.sstatic.net/BhQtp.png
The data returned from firebase is causing an issue when I try to stringify it:
JSON.stringify(data) // where data represents the returned object
This results in the error:
TypeError: Converting circular structure to JSON
What is the correct way to handle an object response like this from firebase?
I came across this helpful answer that explains the issue, but how can I specifically deal with it in the case of using firebase?