curl --location '/comments?article_id=undefined&page=undefined&limit=undefined' \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "string",
"data": {
"comments": [
{
"id": 0,
"content": "string",
"user_id": 0,
"article_id": 0,
"parent_id": 0,
"likes": 0,
"is_liked": true,
"user": {
"id": 0,
"username": "string",
"avatar": "string"
},
"replies": [
{}
],
"created_at": "2019-08-24T14:15:22.123Z",
"updated_at": "2019-08-24T14:15:22.123Z"
}
],
"pagination": {
"page": 0,
"limit": 0,
"total": 0,
"totalPages": 0
}
},
"timestamp": "2019-08-24T14:15:22.123Z"
}