# Query Comment `` requests a single comment to be loaded into Calypso. ## Usage ```js import QueryComment from 'calypso/components/query-comment'; const CommentDetail = ( { comment, commentId, siteId } ) => (
{ comment.date }
{ comment.content }
); ``` ## Props | Name | Type | Description | | ------------ | ------ | ---------------------------------------------------- | | `commentId` | Number | The comment to request. | | `siteId` | Number | The site ID for which the comment should be queried. | | `forceWpcom` | Bool | (default: false) Forces the request to wpcom. |