Compare commits
No commits in common. "365cbb5f70ad05ce36a8313ef68349693bd0c0c2" and "8fcaa1397a293cb40686e47b6999a6d16a207626" have entirely different histories.
365cbb5f70
...
8fcaa1397a
@ -4708,20 +4708,6 @@ 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<{
|
export type GetUploadStreamsWithDetailsQueryVariables = Exact<{
|
||||||
limit?: Scalars["Int"]["input"];
|
limit?: Scalars["Int"]["input"];
|
||||||
after?: InputMaybe<Scalars["String"]["input"]>;
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
@ -4980,19 +4966,6 @@ export const HomographyInfoFragmentDoc = gql`
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
export const UploadStreamWithDetailsFragmentDoc = gql`
|
|
||||||
fragment UploadStreamWithDetails on VideoGQL {
|
|
||||||
id
|
|
||||||
name
|
|
||||||
startTime
|
|
||||||
stream {
|
|
||||||
isCompleted
|
|
||||||
lastIntendedSegmentBound
|
|
||||||
uploadCompletionCursor
|
|
||||||
uploadsCompleted
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
export const GetAggregatedShotMetricsDocument = gql`
|
export const GetAggregatedShotMetricsDocument = gql`
|
||||||
query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) {
|
query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) {
|
||||||
getAggregatedShotMetrics(aggregateInput: $aggregateInput) {
|
getAggregatedShotMetrics(aggregateInput: $aggregateInput) {
|
||||||
@ -8809,7 +8782,15 @@ export const GetUploadStreamsWithDetailsDocument = gql`
|
|||||||
) {
|
) {
|
||||||
getUserVideos(limit: $limit, after: $after, filters: $filters) {
|
getUserVideos(limit: $limit, after: $after, filters: $filters) {
|
||||||
videos {
|
videos {
|
||||||
...UploadStreamWithDetails
|
id
|
||||||
|
name
|
||||||
|
startTime
|
||||||
|
stream {
|
||||||
|
isCompleted
|
||||||
|
lastIntendedSegmentBound
|
||||||
|
uploadCompletionCursor
|
||||||
|
uploadsCompleted
|
||||||
|
}
|
||||||
}
|
}
|
||||||
pageInfo {
|
pageInfo {
|
||||||
hasNextPage
|
hasNextPage
|
||||||
@ -8817,7 +8798,6 @@ export const GetUploadStreamsWithDetailsDocument = gql`
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
${UploadStreamWithDetailsFragmentDoc}
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -101,19 +101,6 @@ query GetUploadStreams(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fragment UploadStreamWithDetails on VideoGQL {
|
|
||||||
id
|
|
||||||
name
|
|
||||||
startTime
|
|
||||||
stream {
|
|
||||||
isCompleted
|
|
||||||
lastIntendedSegmentBound
|
|
||||||
uploadCompletionCursor
|
|
||||||
uploadsCompleted
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
query GetUploadStreamsWithDetails(
|
query GetUploadStreamsWithDetails(
|
||||||
$limit: Int! = 5
|
$limit: Int! = 5
|
||||||
$after: String = null
|
$after: String = null
|
||||||
@ -121,7 +108,15 @@ query GetUploadStreamsWithDetails(
|
|||||||
) {
|
) {
|
||||||
getUserVideos(limit: $limit, after: $after, filters: $filters) {
|
getUserVideos(limit: $limit, after: $after, filters: $filters) {
|
||||||
videos {
|
videos {
|
||||||
...UploadStreamWithDetails
|
id
|
||||||
|
name
|
||||||
|
startTime
|
||||||
|
stream {
|
||||||
|
isCompleted
|
||||||
|
lastIntendedSegmentBound
|
||||||
|
uploadCompletionCursor
|
||||||
|
uploadsCompleted
|
||||||
|
}
|
||||||
}
|
}
|
||||||
pageInfo {
|
pageInfo {
|
||||||
hasNextPage
|
hasNextPage
|
||||||
|
Loading…
x
Reference in New Issue
Block a user