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