IG User Mentioned Comment - jstolpe/instagram-graph-api-php-sdk GitHub Wiki
Data on a comment the user was mentioned in.
use Instagram\User\MentionedComment;
$config = array( // instantiation config params
'user_id' => '<IG_USER_ID>'>,
'comment_id' => '<COMMENT_ID>', // id of comment the user was mentioned
'access_token' => '<ACCESS_TOKEN>',
);
// instantiate mentioned comment
$mentionedComment = new MentionedComment( $config );
// get data on the comment
$mentionedCommentInfo = $mentionedComment->getSelf();