OBJECT
VideoComment
Comment on a video.
link GraphQL Schema definition
1 type VideoComment { 2 3 # Author of the comment. 4 : User 5 6 # Position of the video where this comment was added. 7 : Int! 8 9 # The time the comment was created. 10 : Time! 11 12 # The comments's unique identifier. 13 : ID! 14 15 # The message of the comment. 16 : VideoCommentMessage 17 18 # DEPRECATED. List of replies on this comment. 19 ( 20 : Int, 21 : Cursor 22 ): VideoCommentConnection @deprecated( reason: "No longer supported" ) 23 24 # Where the comment originated. 25 : VideoCommentSource! 26 27 # Current state of the comment. 28 : VideoCommentState! 29 30 # The last time this comment was updated. 31 : Time! 32 33 # The video on which this comment was added. 34 : Video 35 36 }