diff --git a/src/index.tsx b/src/index.tsx index a668e7a..c0bfec8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2066,6 +2066,7 @@ export type Query = { getAggregatedShotMetrics: Array; getBucketSet?: Maybe; getDeployedConfig: DeployedConfigGql; + getFeedVideos: VideoHistoryGql; getLoggedInUser?: Maybe; getOrderedShots: GetShotsResult; getPlayTime: UserPlayTimeGql; @@ -2091,6 +2092,13 @@ export type QueryGetBucketSetArgs = { keyName: Scalars["String"]["input"]; }; +export type QueryGetFeedVideosArgs = { + after?: InputMaybe; + filters?: InputMaybe; + limit?: Scalars["Int"]["input"]; + userId?: InputMaybe; +}; + export type QueryGetOrderedShotsArgs = { filterInput: FilterInput; ids?: InputMaybe>; diff --git a/src/schema.gql b/src/schema.gql index f09ee14..7a85d41 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -45,6 +45,12 @@ type Query { getUserTags: [TagGQL!]! getVideo(videoId: Int!, debuggingJson: JSON = null): VideoGQL! getVideos(videoIds: [Int!]!): [VideoGQL!]! + getFeedVideos( + userId: Int = null + limit: Int! = 5 + after: String = null + filters: VideoFilterInput = null + ): VideoHistoryGQL! } type AggregateResultGQL {