Couchbase return raw data

Hi all,

I’m currently working with spatial views and geodata.

Is it possible to return directly raw data from a spatial view? right know I only get the standard structure

{“total_rows”:0,“rows”:[
{“id”:“4”,“bbox”:[8.96510124206543,46.020568587556,8.96510124206543,46.020568587556],“geometry”:{“type”:“Point”,“coordinates”:[8.96510124206543,46.020568587556]},“value”:[{“type”:“Feature”,“properties”:{“param”:“Info”},“geometry”:{“type”:“Point”,“coordinates”:[8.96510124206543,46.020568587556]}}]}
]
}

I would like to get only the raw data:

{ “type”: “Feature”, “properties”:
{ “param”: “Info” },
“geometry”: { “type”: “Point”, “coordinates”: [ 8.96510124206543, 46.020568587556 ] }
}

Thanks in advance for your reply.
Regards
Giovanni