From 7b4880a9906f2e3e69345725c8344af8215f75a1 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 17 Dec 2024 14:12:25 -0700 Subject: [PATCH] Add all videos --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 49ac198..a1b647f 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2259,6 +2259,7 @@ export type QueryGetBucketSetArgs = { export type QueryGetFeedVideosArgs = { after?: InputMaybe; + allVideos?: Scalars["Boolean"]["input"]; filters?: InputMaybe; includeCallersVideos?: InputMaybe; limit?: Scalars["Int"]["input"]; diff --git a/src/schema.gql b/src/schema.gql index bb06055..80c9917 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -68,6 +68,7 @@ type Query { after: String = null includeCallersVideos: Boolean = true filters: VideoFilterInput = null + allVideos: Boolean! = false ): VideoHistoryGQL! }