I am facing an issue with the following query:
sql = client.query("SELECT * FROM monitormaterialsept", function (err, result, fields) {
if (err) throw err;
console.log(result);
})
I am unsure of what the output of the sql variable is.
Is there a way to make it output as a JSON object?