Delete video implemented on backend; schema changes
This commit is contained in:
parent
57c3ee0360
commit
e88d875bd9
@ -183,6 +183,7 @@ export type Mutation = {
|
||||
__typename?: "Mutation";
|
||||
createBucketSet: BucketSetGql;
|
||||
createUploadStream: CreateUploadStreamReturn;
|
||||
deleteVideo: Scalars["Boolean"]["output"];
|
||||
getUploadLink: GetUploadLinkReturn;
|
||||
terminateUploadStream: Scalars["Boolean"]["output"];
|
||||
};
|
||||
@ -195,6 +196,10 @@ export type MutationCreateUploadStreamArgs = {
|
||||
videoMetadata: VideoMetadataInput;
|
||||
};
|
||||
|
||||
export type MutationDeleteVideoArgs = {
|
||||
videoId: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
export type MutationGetUploadLinkArgs = {
|
||||
segmentIndex: Scalars["Int"]["input"];
|
||||
videoId: Scalars["Int"]["input"];
|
||||
|
@ -52,3 +52,7 @@ query GetStreamMonitoringDetails($videoId: Int!) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
mutation DeleteVideo($videoId: Int!) {
|
||||
deleteVideo(videoId: $videoId)
|
||||
}
|
||||
|
@ -283,6 +283,7 @@ type Mutation {
|
||||
videoId: Int!
|
||||
videoMetadata: VideoMetadataInput!
|
||||
): Boolean!
|
||||
deleteVideo(videoId: Int!): Boolean!
|
||||
}
|
||||
|
||||
input CreateBucketSetInput {
|
||||
|
Loading…
Reference in New Issue
Block a user