diff --git a/src/index.tsx b/src/index.tsx index db5bbe5..4163c3d 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 a65e556..5c67cc0 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -59,7 +59,7 @@ type Query { getFeedVideos( limit: Int! = 5 after: String = null - includeCallersVideos: Boolean = false + includeCallersVideos: Boolean = true filters: VideoFilterInput = null ): VideoHistoryGQL! } @@ -629,6 +629,7 @@ input VideoFilterInput { isStreamCompleted: Boolean = null requireCursorCompletion: Boolean! = true createdAt: DateRangeFilter = null + excludeVideosWithNoShots: Boolean = null } type VideoHistoryGQL {