I am getting following as a response from bigquery and i want to convert this whole data to CSV.
"rows": [
{
"f": [
{
"v": "1"
},
{
"v": "204"
},
{
"v": "1464830471"
},
{
"v": "4"
},
{
"v": "5593693585347748"
}
]
},
{
"f": [
{
"v": "1"
},
{
"v": "205"
},
{
"v": "1464865550"
},
{
"v": "2"
},
{
"v": "5593693585347748"
}
]
}
]
Now i want this f and v to be converted like this.
data.csv
1,204,1464830471,4,5593693585347748
1,205,1464865550,2,5593693585347748.
Here Bigquery responses consist of f and v key.thats make confusion.