I've created an API that retrieves the results of my sql queries with node.js and I've hosted my JSON files on ngrok. My results are as follows:
[
{
"IdAppliance": 1,
"FK_IdMarque": 1,
"Model": "Galaxy S21"
},
{
"IdAppliance": 2,
"FK_IdBrand": 1,
"Model": "Galaxy Note 20"
},
{
"IdApparil": 3,
"FK_IdBrand": 2,
"Model": "iPhone 12"
},
]
I'd just like to retrieve the values of some or all of the fields in my various SQL table records. Using my API link.
How can I do this?