Compare commits
7 Commits
kat/tags
...
2657a9baf7
| Author | SHA1 | Date | |
|---|---|---|---|
| 2657a9baf7 | |||
| 9bb4b7c513 | |||
| a5050ed08d | |||
| b9e26243e9 | |||
| 021cd35278 | |||
| 8dda81236a | |||
| c7ff615fe4 |
@@ -2708,13 +2708,19 @@ export type SuccessfulAddAddShotAnnotationErrors =
|
||||
| AddShotAnnotationErrors
|
||||
| SuccessfulAdd;
|
||||
|
||||
export type TagGql = {
|
||||
__typename?: "TagGQL";
|
||||
group?: Maybe<Scalars["String"]["output"]>;
|
||||
export type TagClassGql = {
|
||||
__typename?: "TagClassGQL";
|
||||
id: Scalars["Int"]["output"];
|
||||
name: Scalars["String"]["output"];
|
||||
};
|
||||
|
||||
export type TagGql = {
|
||||
__typename?: "TagGQL";
|
||||
id: Scalars["Int"]["output"];
|
||||
name: Scalars["String"]["output"];
|
||||
tagClasses?: Maybe<Array<TagClassGql>>;
|
||||
};
|
||||
|
||||
export type TargetMetricsGql = {
|
||||
__typename?: "TargetMetricsGQL";
|
||||
averageDifficulty?: Maybe<Scalars["Float"]["output"]>;
|
||||
@@ -2906,6 +2912,7 @@ export type VideoMetadataInput = {
|
||||
endStream?: Scalars["Boolean"]["input"];
|
||||
endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||
framesPerSecond?: InputMaybe<Scalars["Float"]["input"]>;
|
||||
/** @deprecated `game_type` is deprecated. Use `tags` instead. */
|
||||
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
||||
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
private?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
@@ -2913,6 +2920,8 @@ export type VideoMetadataInput = {
|
||||
startTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||
streamSegmentType?: InputMaybe<StreamSegmentTypeEnum>;
|
||||
tableSize?: InputMaybe<Scalars["Float"]["input"]>;
|
||||
/** A list of tags associated with the video. Replace `game_type` */
|
||||
tags?: InputMaybe<Array<VideoTagInput>>;
|
||||
videoName?: InputMaybe<Scalars["String"]["input"]>;
|
||||
};
|
||||
|
||||
|
||||
@@ -714,9 +714,14 @@ type PageInfoGQL {
|
||||
}
|
||||
|
||||
type TagGQL {
|
||||
name: String!
|
||||
id: Int!
|
||||
group: String
|
||||
name: String!
|
||||
tagClasses: [TagClassGQL!]
|
||||
}
|
||||
|
||||
type TagClassGQL {
|
||||
id: Int!
|
||||
name: String!
|
||||
}
|
||||
|
||||
"""
|
||||
@@ -895,6 +900,12 @@ input VideoMetadataInput {
|
||||
startTime: DateTime = null
|
||||
endTime: DateTime = null
|
||||
gameType: String = null
|
||||
@deprecated(reason: "`game_type` is deprecated. Use `tags` instead.")
|
||||
|
||||
"""
|
||||
A list of tags associated with the video. Replace `game_type`
|
||||
"""
|
||||
tags: [VideoTagInput!] = null
|
||||
tableSize: Float = null
|
||||
lastIntendedSegmentBound: Int = null
|
||||
streamSegmentType: StreamSegmentTypeEnum = null
|
||||
|
||||
Reference in New Issue
Block a user