26 lines
452 B
GraphQL
26 lines
452 B
GraphQL
# see: https://www.apollographql.com/docs/react/local-state/managing-state-with-field-policies/
|
|
directive @client on FIELD
|
|
|
|
extend type ShotGQL {
|
|
startTime: Float!
|
|
endTime: Float!
|
|
}
|
|
|
|
extend type UploadStreamGQL {
|
|
segmentEndFrames: [Int!]!
|
|
}
|
|
|
|
extend type HLSPlaylistGQL {
|
|
segmentStartTimes: [Float!]!
|
|
}
|
|
|
|
type SegmentEndFramesGQL {
|
|
id: Int!
|
|
segmentEndFrames: [Int!]!
|
|
}
|
|
|
|
type SegmentStartTimesGQL {
|
|
id: Int!
|
|
segmentStartTimes: [Float!]!
|
|
}
|