Expose upload completion cursor
This commit is contained in:
parent
5d99ec7673
commit
a7c8e07eb7
@ -382,8 +382,9 @@ export type UploadStreamGql = {
|
|||||||
linksRequested: Scalars["Int"]["output"];
|
linksRequested: Scalars["Int"]["output"];
|
||||||
lowestUnuploadedSegmentIndex: Scalars["Int"]["output"];
|
lowestUnuploadedSegmentIndex: Scalars["Int"]["output"];
|
||||||
segmentProcessingCursor: Scalars["Int"]["output"];
|
segmentProcessingCursor: Scalars["Int"]["output"];
|
||||||
|
segments: Array<UploadSegmentGql>;
|
||||||
updatedAt: Scalars["DateTime"]["output"];
|
updatedAt: Scalars["DateTime"]["output"];
|
||||||
uploadSegments: Array<UploadSegmentGql>;
|
uploadCompletionCursor: Scalars["Int"]["output"];
|
||||||
uploadsCompleted: Scalars["Int"]["output"];
|
uploadsCompleted: Scalars["Int"]["output"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -227,10 +227,11 @@ type UploadStreamGQL {
|
|||||||
lastIntendedSegmentBound: Int!
|
lastIntendedSegmentBound: Int!
|
||||||
isCompleted: Boolean!
|
isCompleted: Boolean!
|
||||||
lowestUnuploadedSegmentIndex: Int!
|
lowestUnuploadedSegmentIndex: Int!
|
||||||
|
uploadCompletionCursor: Int!
|
||||||
errors: [StreamErrorGQL!]!
|
errors: [StreamErrorGQL!]!
|
||||||
createdAt: DateTime!
|
createdAt: DateTime!
|
||||||
updatedAt: DateTime!
|
updatedAt: DateTime!
|
||||||
uploadSegments: [UploadSegmentGQL!]!
|
segments: [UploadSegmentGQL!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
type StreamErrorGQL {
|
type StreamErrorGQL {
|
||||||
|
Loading…
Reference in New Issue
Block a user