Add spinType and filter input #45

Merged
countablecloud merged 2 commits from mk/spin-type into master 2024-08-28 17:38:44 -06:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit f306cc6c16 - Show all commits

View File

@ -2063,6 +2063,7 @@ export type GetVideosQuery = {
getVideos: Array<{
__typename?: "VideoGQL";
id: number;
framesPerSecond: number;
stream?: {
__typename?: "UploadStreamGQL";
id: string;
@ -3629,6 +3630,7 @@ export const GetVideosDocument = gql`
query GetVideos($videoIds: [Int!]!) {
getVideos(videoIds: $videoIds) {
id
framesPerSecond
stream {
id
streamSegmentType

View File

@ -118,6 +118,7 @@ query GetVideoDetails($videoId: Int!) {
query GetVideos($videoIds: [Int!]!) {
getVideos(videoIds: $videoIds) {
id
framesPerSecond
stream {
id
streamSegmentType