get_item_comments
Retrieve all comments for a specific Qiita article using its article ID to view community feedback and discussions.
Instructions
指定された記事のコメント一覧を取得します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | Yes | 記事ID |
Input Schema (JSON Schema)
{
"properties": {
"itemId": {
"description": "記事ID",
"type": "string"
}
},
"required": [
"itemId"
],
"type": "object"
}