add reaction count schema

This commit is contained in:
Loewy 2025-08-04 12:36:13 -07:00
parent 01fb113e1c
commit b5a8e3eca7
2 changed files with 20 additions and 0 deletions

View File

@ -2232,6 +2232,15 @@ export type IntPoint2DInput = {
y: Scalars["Int"]["input"];
};
export type IntRangeFilter = {
greaterThan?: InputMaybe<Scalars["Int"]["input"]>;
greaterThanEqualTo?: InputMaybe<Scalars["Int"]["input"]>;
greaterThanInclusive?: Scalars["Boolean"]["input"];
includeOnNone?: Scalars["Boolean"]["input"];
lessThan?: InputMaybe<Scalars["Int"]["input"]>;
lessThanInclusive?: Scalars["Boolean"]["input"];
};
export type MakePercentageIntervalGql = {
__typename?: "MakePercentageIntervalGQL";
elapsedTime: Scalars["Float"]["output"];
@ -3134,6 +3143,7 @@ export type VideoFilterInput = {
createdAt?: InputMaybe<DateRangeFilter>;
excludeVideosWithNoShots?: InputMaybe<Scalars["Boolean"]["input"]>;
isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>;
reactionCount?: InputMaybe<IntRangeFilter>;
requireCursorCompletion?: Scalars["Boolean"]["input"];
};

View File

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