OBJECT

VideoBookmark

A video bookmark.

link GraphQL Schema definition

1type VideoBookmark {
2
3# channel the VOD belongs to.
4channel: User!
5
6# Time at which the bookmark was created.
7createdAt: Time!
8
9# Description of the bookmark.
10description: String!
11
12# ID of the bookmark.
13id: ID!
14
15# Relative offset in the video.
16positionSeconds: Int!
17
18# user who created the bookmark.
19user: User!
20
21}