Compare commits
3 Commits
8fcaa1397a
...
kat/tags
Author | SHA1 | Date | |
---|---|---|---|
62cf4ae56d | |||
365cbb5f70 | |||
194d0dcd22 |
@@ -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"]>;
|
||||
};
|
||||
|
||||
@@ -4708,6 +4711,20 @@ export type GetUploadStreamsQuery = {
|
||||
};
|
||||
};
|
||||
|
||||
export type UploadStreamWithDetailsFragment = {
|
||||
__typename?: "VideoGQL";
|
||||
id: number;
|
||||
name?: string | null;
|
||||
startTime?: any | null;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
isCompleted: boolean;
|
||||
lastIntendedSegmentBound?: number | null;
|
||||
uploadCompletionCursor: number;
|
||||
uploadsCompleted: number;
|
||||
} | null;
|
||||
};
|
||||
|
||||
export type GetUploadStreamsWithDetailsQueryVariables = Exact<{
|
||||
limit?: Scalars["Int"]["input"];
|
||||
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||
@@ -4966,6 +4983,19 @@ export const HomographyInfoFragmentDoc = gql`
|
||||
}
|
||||
}
|
||||
`;
|
||||
export const UploadStreamWithDetailsFragmentDoc = gql`
|
||||
fragment UploadStreamWithDetails on VideoGQL {
|
||||
id
|
||||
name
|
||||
startTime
|
||||
stream {
|
||||
isCompleted
|
||||
lastIntendedSegmentBound
|
||||
uploadCompletionCursor
|
||||
uploadsCompleted
|
||||
}
|
||||
}
|
||||
`;
|
||||
export const GetAggregatedShotMetricsDocument = gql`
|
||||
query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) {
|
||||
getAggregatedShotMetrics(aggregateInput: $aggregateInput) {
|
||||
@@ -8782,15 +8812,7 @@ export const GetUploadStreamsWithDetailsDocument = gql`
|
||||
) {
|
||||
getUserVideos(limit: $limit, after: $after, filters: $filters) {
|
||||
videos {
|
||||
id
|
||||
name
|
||||
startTime
|
||||
stream {
|
||||
isCompleted
|
||||
lastIntendedSegmentBound
|
||||
uploadCompletionCursor
|
||||
uploadsCompleted
|
||||
}
|
||||
...UploadStreamWithDetails
|
||||
}
|
||||
pageInfo {
|
||||
hasNextPage
|
||||
@@ -8798,6 +8820,7 @@ export const GetUploadStreamsWithDetailsDocument = gql`
|
||||
}
|
||||
}
|
||||
}
|
||||
${UploadStreamWithDetailsFragmentDoc}
|
||||
`;
|
||||
|
||||
/**
|
||||
|
@@ -101,6 +101,19 @@ query GetUploadStreams(
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fragment UploadStreamWithDetails on VideoGQL {
|
||||
id
|
||||
name
|
||||
startTime
|
||||
stream {
|
||||
isCompleted
|
||||
lastIntendedSegmentBound
|
||||
uploadCompletionCursor
|
||||
uploadsCompleted
|
||||
}
|
||||
}
|
||||
|
||||
query GetUploadStreamsWithDetails(
|
||||
$limit: Int! = 5
|
||||
$after: String = null
|
||||
@@ -108,15 +121,7 @@ query GetUploadStreamsWithDetails(
|
||||
) {
|
||||
getUserVideos(limit: $limit, after: $after, filters: $filters) {
|
||||
videos {
|
||||
id
|
||||
name
|
||||
startTime
|
||||
stream {
|
||||
isCompleted
|
||||
lastIntendedSegmentBound
|
||||
uploadCompletionCursor
|
||||
uploadsCompleted
|
||||
}
|
||||
...UploadStreamWithDetails
|
||||
}
|
||||
pageInfo {
|
||||
hasNextPage
|
||||
|
@@ -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