Materializing Highchart data

Dear everyone,
I would like to build a nifty Chart. However i am uncertain how the sql statement

select currency, abs(count) as abs_count, count from inputTable i

materializes in a JS Object.
Can i somehow log the sql output to the console?
I am especially interested to see how Apps manifest the data series object.

“Full” Code Reference

{
“id”: “chartVis”,
“type”: “highcharts”,
“source”: “myDataSource”,
“sourceOptions”: {
“sql”: “select currency, abs(count) as abs_count, count from inputTable i”
},
“config”: {
“title”: {
“text”: “”
},
“exporting”: {},
“chart”: {
“type”: “pie”,
“polar”: false
}
}
}

This post is redundant to the question [unanswered]: