Skip to content

Commit 00b8c72

Browse files
committed
chore(frontend): update GQL schema with cancelOtaOperation mutation
Generated with ``` npm run relay:generate-schema npm run format ``` Signed-off-by: Damiano Mason <damiano.mason@secomind.com>
1 parent 290d019 commit 00b8c72

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

frontend/src/api/schema.graphql

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5005,6 +5005,15 @@ type Tag {
50055005
name: String!
50065006
}
50075007

5008+
"The result of the :cancel_ota_operation mutation"
5009+
type CancelOtaOperationResult {
5010+
"The successful result of the mutation"
5011+
result: OtaOperation
5012+
5013+
"Any errors generated, if the mutation failed"
5014+
errors: [MutationError!]!
5015+
}
5016+
50085017
"The result of the :create_manual_ota_operation mutation"
50095018
type CreateManualOtaOperationResult {
50105019
"The successful result of the mutation"
@@ -6261,6 +6270,9 @@ type RootMutationType {
62616270
input: CreateManualOtaOperationInput!
62626271
): CreateManualOtaOperationResult
62636272

6273+
"Cancels an OTA update operation"
6274+
cancelOtaOperation(id: ID!): CancelOtaOperationResult
6275+
62646276
"Creates a new device group."
62656277
createDeviceGroup(input: CreateDeviceGroupInput!): CreateDeviceGroupResult
62666278

0 commit comments

Comments
 (0)