Add time to segment information

This commit is contained in:
2025-02-26 20:30:39 -07:00
parent 0bcfd32b14
commit 9d912ed21e
3 changed files with 41 additions and 18 deletions

View File

@@ -1,11 +1,16 @@
# see: https://www.apollographql.com/docs/react/local-state/managing-state-with-field-policies/
directive @client on FIELD
type SegmentInfo {
index: Int!
time: Float!
}
extend type ShotGQL {
startTime: Float!
endTime: Float!
startSegment: Int!
endSegment: Int!
startSegment: SegmentInfo!
endSegment: SegmentInfo!
}
extend type UploadStreamGQL {