Add excludeVideosWithNoShots filter #133

Merged
countablecloud merged 1 commits from mk/exclude-no-shots-filter into master 2024-11-13 15:13:34 -07:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit ee11e506ed - Show all commits

View File

@ -2610,6 +2610,7 @@ export type UserRelationshipsResult = {
export type VideoFilterInput = { export type VideoFilterInput = {
createdAt?: InputMaybe<DateRangeFilter>; createdAt?: InputMaybe<DateRangeFilter>;
excludeVideosWithNoShots?: InputMaybe<Scalars["Boolean"]["input"]>;
isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>; isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>;
requireCursorCompletion?: Scalars["Boolean"]["input"]; requireCursorCompletion?: Scalars["Boolean"]["input"];
}; };

View File

@ -629,6 +629,7 @@ input VideoFilterInput {
isStreamCompleted: Boolean = null isStreamCompleted: Boolean = null
requireCursorCompletion: Boolean! = true requireCursorCompletion: Boolean! = true
createdAt: DateRangeFilter = null createdAt: DateRangeFilter = null
excludeVideosWithNoShots: Boolean = null
} }
type VideoHistoryGQL { type VideoHistoryGQL {