Merge branch 'master' into volodymyr/get-user-videos
All checks were successful
Tests / Tests (pull_request) Successful in 13s

This commit is contained in:
countablecloud 2024-11-13 15:14:30 -07:00
commit a3d6e6e19e
2 changed files with 3 additions and 1 deletions

View File

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

View File

@ -59,7 +59,7 @@ type Query {
getFeedVideos( getFeedVideos(
limit: Int! = 5 limit: Int! = 5
after: String = null after: String = null
includeCallersVideos: Boolean = false includeCallersVideos: Boolean = true
filters: VideoFilterInput = null filters: VideoFilterInput = null
): VideoHistoryGQL! ): VideoHistoryGQL!
} }
@ -629,6 +629,7 @@ input VideoFilterInput {
isStreamCompleted: Boolean = null isStreamCompleted: Boolean = null
requireCursorCompletion: Boolean! = true requireCursorCompletion: Boolean! = true
createdAt: DateRangeFilter = null createdAt: DateRangeFilter = null
excludeVideosWithNoShots: Boolean = null
} }
type VideoHistoryGQL { type VideoHistoryGQL {