ENUM

ClipsSort

An enumeration on the different sort orders of clips results.

link GraphQL Schema definition

1enum ClipsSort {
2
3# Sort the clips ascending by created_at.
4CREATED_AT_ASC
5
6# Sort the clips descending by created_at.
7CREATED_AT_DESC
8
9# Sort the clips ascending by views.
10VIEWS_ASC
11
12# Sort the clips descending by views.
13VIEWS_DESC
14
15# Sort the clips descending by popularity.
16TRENDING
17}