update operations
This commit is contained in:
parent
3f16310f67
commit
4d05d9a539
@ -1,13 +1,13 @@
|
|||||||
mutation CreateUploadStream(
|
mutation CreateUploadStream(
|
||||||
$videoName: String!,
|
$videoName: String!
|
||||||
$deviceType: DeviceTypeEnum,
|
$deviceType: DeviceTypeEnum
|
||||||
$osVersion: String,
|
$osVersion: String
|
||||||
$appVersion: String,
|
$appVersion: String
|
||||||
$browserName: String,
|
$browserName: String
|
||||||
$browserVersion: String,
|
$browserVersion: String
|
||||||
$locale: String,
|
$locale: String
|
||||||
$timezone: String,
|
$timezone: String
|
||||||
$networkType: String,
|
$networkType: String
|
||||||
$ipAddress: String
|
$ipAddress: String
|
||||||
) {
|
) {
|
||||||
createUploadStream(
|
createUploadStream(
|
||||||
@ -35,6 +35,16 @@ mutation GetUploadLink($videoId: Int!, $segmentIndex: Int!) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mutation TerminateUploadStream($videoId: Int!) {
|
mutation TerminateUploadStream(
|
||||||
terminateUploadStream(videoId: $videoId)
|
$videoId: Int!
|
||||||
|
$videoName: String
|
||||||
|
$gameType: String
|
||||||
|
$tableSize: String
|
||||||
|
) {
|
||||||
|
terminateUploadStream(
|
||||||
|
videoId: $videoId
|
||||||
|
videoName: $videoName
|
||||||
|
gameType: $gameType
|
||||||
|
tableSize: $tableSize
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user