OBJECT

ShortVideo

A short video from a ShortVideoFeed and its relevant metadata.

link GraphQL Schema definition

1type ShortVideo {
2
3# The actual short form video content to display.
4content: ShortVideoContent
5
6# The ID of the short form video.
7id: ID!
8
9# All of the reactions on this short form video.
10reactions: [ShortVideoReaction!]!
11
12}