From ee11e506edeef05816ddd746d70a59361b4bad9b Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Wed, 13 Nov 2024 14:12:57 -0800 Subject: [PATCH] Add excludeVideosWithNoShots filter --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index c93f0a5..0db2c1e 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2610,6 +2610,7 @@ export type UserRelationshipsResult = { export type VideoFilterInput = { createdAt?: InputMaybe; + excludeVideosWithNoShots?: InputMaybe; isStreamCompleted?: InputMaybe; requireCursorCompletion?: Scalars["Boolean"]["input"]; }; diff --git a/src/schema.gql b/src/schema.gql index c338b4b..5c67cc0 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -629,6 +629,7 @@ input VideoFilterInput { isStreamCompleted: Boolean = null requireCursorCompletion: Boolean! = true createdAt: DateRangeFilter = null + excludeVideosWithNoShots: Boolean = null } type VideoHistoryGQL { -- 2.46.1