GraphQL\Examples\Blog\Type\StoryType::totalCommentCount PHP Method

totalCommentCount() public method

public totalCommentCount ( Story $story )
$story GraphQL\Examples\Blog\Data\Story
    public function totalCommentCount(Story $story)
    {
        return DataSource::countComments($story->id);
    }