I export a view with a curl command
and the view looks like this in the map
function(doc) {
emit([doc.user.friends_count,
doc.user.followers_count,doc.retweet_count,doc.text], doc.id_str);
}
is it possible to surround the for example doc.user.friends_count with
quote signs, to have it like this with the usual comma between the quote
signs?
"doc.user.friends_count","
doc.user.followers_count","doc.retweet_count","doc.text"
thank you
2015-02-04 1:31 GMT+01:00 Ayhan Kesenci <[email protected]>:
> I export a view with a curl command
>
> and the view looks like this in the map
>
> function(doc) {
> emit([doc.user.friends_count,
> doc.user.followers_count,doc.retweet_count,doc.text], doc.id_str);
> }
>
>
> is it possible to surround the for example doc.user.friends_count with
> quote signs, to have it like this with the usual comma between the quote
> signs?
>
>
> "doc.user.friends_count","
> doc.user.followers_count","doc.retweet_count","doc.text"
>
>