{
"pull_request": {
"patch_url": null,
},
"created_at": "2012-11-14T15:25:33Z",
"comments": 0,
"labels": [
{
"color": "ededed
}
],
"id": 8356941,
"assignees": [
{
"login": "Paul",
"id": 444
},
{
"login": "Steve",
"id": 222
}
]
By JSON Query
assignees[*].login
, getting below output.
["Paul","Steve"]
But required as comma separated string without quotes as below,
Paul, Steve
How to do this in JSON Query?