ENUM

ClipsFilter

The set of methods to restrict clips results.

link GraphQL Schema definition

1enum ClipsFilter {
2
3# Limit results to trending clips.
4TRENDING
5
6# Limit results to clips created in the period between now and the last 24 hours.
7LAST_DAY
8
9# Limit results to clips created in the period between now and the last 7 days.
10LAST_WEEK
11
12# Limit results to clips created in the period between now and the last 30 days.
13LAST_MONTH
14
15# No limit on clips creation period.
16ALL_TIME
17}