INPUT_OBJECT

CreateVideoCommentInput

link GraphQL Schema definition

1input CreateVideoCommentInput {
4
2# The id of the parent video comment when you reply.
3commentID: ID
7
5# Position of the video where this comment will be added.
6contentOffsetSeconds: Int!
10
8# The message of the comment.
9message: String!
13
11# The id of the video this comment belongs to.
12videoID: ID!
14}