Add includeCallersVideos to getFeedVideos #130

Merged
countablecloud merged 1 commits from mk/make-feed-get-only-theirs into master 2024-11-13 11:11:23 -07:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit f826121aa3 - Show all commits

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!
}