diff --git a/src/index.tsx b/src/index.tsx index 1e5c093..748f9a4 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2232,6 +2232,15 @@ export type IntPoint2DInput = { y: Scalars["Int"]["input"]; }; +export type IntRangeFilter = { + greaterThan?: InputMaybe; + greaterThanEqualTo?: InputMaybe; + greaterThanInclusive?: Scalars["Boolean"]["input"]; + includeOnNone?: Scalars["Boolean"]["input"]; + lessThan?: InputMaybe; + lessThanInclusive?: Scalars["Boolean"]["input"]; +}; + export type MakePercentageIntervalGql = { __typename?: "MakePercentageIntervalGQL"; elapsedTime: Scalars["Float"]["output"]; @@ -3134,6 +3143,7 @@ export type VideoFilterInput = { createdAt?: InputMaybe; excludeVideosWithNoShots?: InputMaybe; isStreamCompleted?: InputMaybe; + reactionCount?: InputMaybe; requireCursorCompletion?: Scalars["Boolean"]["input"]; }; diff --git a/src/schema.gql b/src/schema.gql index d8b4eba..35648a3 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -637,6 +637,16 @@ input VideoFilterInput { requireCursorCompletion: Boolean! = true createdAt: DateRangeFilter = null excludeVideosWithNoShots: Boolean = null + reactionCount: IntRangeFilter = null +} + +input IntRangeFilter { + lessThan: Int = null + greaterThanEqualTo: Int = null + greaterThan: Int = null + includeOnNone: Boolean! = false + lessThanInclusive: Boolean! = false + greaterThanInclusive: Boolean! = true } input VideoFeedInputGQL @oneOf {