Mutation

update_custom_extension_jar

Updates the .jar file for a custom extension.

Arguments

input: UpdateCustomExtensionJarInput!

The new .jar file for the custom extension.


Input Fields

id(): ID!
extension_filename(): String!
The original name of the extension file.
extension_jar_as_base_64(): String!
The contents of the extension as base64-encoded, expected to be a .jar file.

Return Fields

extension(): Extension!
The uploaded extension.

Example

Query
mutation UpdateCustomExtensionJar($updateFileInput: UpdateCustomExtensionJarInput!) {
  update_custom_extension_jar(input: $updateFileInput) {
    extension {
      id
    }
  }
}
Variables
{
  "updateFileInput": {
    "id": "ef171569-eead-46b4-8b92-41b26806bae8",
    "extension_filename": "test-custom-extension-2.0.jar",
    "extension_jar_as_base_64": "UEsDBAoAAAgIAI ... snip ... C+AgAAJxQAAAAA"
  }
}