Add excludeVideosWithNoShots filter
All checks were successful
Tests / Tests (pull_request) Successful in 16s

This commit is contained in:
Mike Kalange 2024-11-13 14:12:57 -08:00
parent 21acb5219d
commit ee11e506ed
2 changed files with 2 additions and 0 deletions

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 {