Compare commits
3 Commits
kat/tags
...
021cd35278
Author | SHA1 | Date | |
---|---|---|---|
021cd35278 | |||
8dda81236a | |||
c7ff615fe4 |
@@ -2906,6 +2906,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 +2914,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"]>;
|
||||
};
|
||||
|
||||
@@ -3927,7 +3930,12 @@ export type GetUserTagsQueryVariables = Exact<{ [key: string]: never }>;
|
||||
|
||||
export type GetUserTagsQuery = {
|
||||
__typename?: "Query";
|
||||
getUserTags: Array<{ __typename?: "TagGQL"; id: number; name: string }>;
|
||||
getUserTags: Array<{
|
||||
__typename?: "TagGQL";
|
||||
id: number;
|
||||
name: string;
|
||||
group?: string | null;
|
||||
}>;
|
||||
};
|
||||
|
||||
export type FollowUserMutationVariables = Exact<{
|
||||
@@ -6932,6 +6940,7 @@ export const GetUserTagsDocument = gql`
|
||||
getUserTags {
|
||||
id
|
||||
name
|
||||
group
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
@@ -79,6 +79,7 @@ query GetUserTags {
|
||||
getUserTags {
|
||||
id
|
||||
name
|
||||
group
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -895,6 +895,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