ENUM

VideoSort

Possible sort orders for lists of videos.

link GraphQL Schema definition

1enum VideoSort {
2
3# Sort the videos descending by time (publishedAt if available or createdAt).
4TIME
5
6# Sort the videos ascending by time (publishedAt if available or createdAt).
7TIME_ASC
8
9# Sort the videos descending by views.
10VIEWS
11}