Compare commits
1 Commits
master
...
loewy/add-
Author | SHA1 | Date | |
---|---|---|---|
b5a8e3eca7 |
@ -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"];
|
||||
};
|
||||
|
||||
|
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user