OBJECT

VideoComment

Comment on a video.

link GraphQL Schema definition

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