add reaction count schema
This commit is contained in:
parent
01fb113e1c
commit
b5a8e3eca7
@ -2232,6 +2232,15 @@ export type IntPoint2DInput = {
|
|||||||
y: Scalars["Int"]["input"];
|
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 = {
|
export type MakePercentageIntervalGql = {
|
||||||
__typename?: "MakePercentageIntervalGQL";
|
__typename?: "MakePercentageIntervalGQL";
|
||||||
elapsedTime: Scalars["Float"]["output"];
|
elapsedTime: Scalars["Float"]["output"];
|
||||||
@ -3134,6 +3143,7 @@ export type VideoFilterInput = {
|
|||||||
createdAt?: InputMaybe<DateRangeFilter>;
|
createdAt?: InputMaybe<DateRangeFilter>;
|
||||||
excludeVideosWithNoShots?: InputMaybe<Scalars["Boolean"]["input"]>;
|
excludeVideosWithNoShots?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||||
isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>;
|
isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||||
|
reactionCount?: InputMaybe<IntRangeFilter>;
|
||||||
requireCursorCompletion?: Scalars["Boolean"]["input"];
|
requireCursorCompletion?: Scalars["Boolean"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -637,6 +637,16 @@ input VideoFilterInput {
|
|||||||
requireCursorCompletion: Boolean! = true
|
requireCursorCompletion: Boolean! = true
|
||||||
createdAt: DateRangeFilter = null
|
createdAt: DateRangeFilter = null
|
||||||
excludeVideosWithNoShots: Boolean = 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 {
|
input VideoFeedInputGQL @oneOf {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user