Add includeCallersVideos to getFeedVideos
All checks were successful
Tests / Tests (pull_request) Successful in 13s

This commit is contained in:
Mike Kalange 2024-11-13 10:10:11 -08:00
parent 2aadb8b49b
commit f826121aa3
2 changed files with 2 additions and 0 deletions

View File

@ -2210,6 +2210,7 @@ export type QueryGetBucketSetArgs = {
export type QueryGetFeedVideosArgs = {
after?: InputMaybe<Scalars["String"]["input"]>;
filters?: InputMaybe<VideoFilterInput>;
includeCallersVideos?: InputMaybe<Scalars["Boolean"]["input"]>;
limit?: Scalars["Int"]["input"];
};

View File

@ -59,6 +59,7 @@ type Query {
getFeedVideos(
limit: Int! = 5
after: String = null
includeCallersVideos: Boolean = false
filters: VideoFilterInput = null
): VideoHistoryGQL!
}