ENUM

ClipsPeriod

An enumeration on the different time frames to filter clips results based on creation time.

link GraphQL Schema definition

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