remove stream from getUploadLink

This commit is contained in:
Loewy 2024-08-16 18:47:08 -07:00
parent 5350c46e0a
commit 72b451d322
2 changed files with 0 additions and 10 deletions

View File

@ -2191,10 +2191,6 @@ export type GetUploadLinkMutation = {
value: string;
} | null>;
};
stream?: {
__typename?: "UploadStreamGQL";
uploadCompletionCursor: number;
} | null;
};
};
@ -4144,9 +4140,6 @@ export const GetUploadLinkDocument = gql`
}
}
}
stream {
uploadCompletionCursor
}
}
}
`;

View File

@ -34,9 +34,6 @@ mutation GetUploadLink($videoId: Int!, $segmentIndex: Int!) {
}
}
}
stream {
uploadCompletionCursor
}
}
}