Get user videos #132

Merged
countablecloud merged 2 commits from volodymyr/get-user-videos into master 2024-11-13 15:14:49 -07:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit a3d6e6e19e - Show all commits

View File

@ -2610,6 +2610,7 @@ export type UserRelationshipsResult = {
export type VideoFilterInput = {
createdAt?: InputMaybe<DateRangeFilter>;
excludeVideosWithNoShots?: InputMaybe<Scalars["Boolean"]["input"]>;
isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>;
requireCursorCompletion?: Scalars["Boolean"]["input"];
};

View File

@ -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 {