Mutation

update_custom_extension_name

Updates the name property of a custom extension.

Arguments

input: UpdateCustomExtensionNameInput!

The new name for the custom extension.


Input Fields

id(): ID!
The unique identifier of the custom extension.
name(): String!
The new name for the custom extension.

Return Fields

extension(): Extension!
The uploaded extension.

Example

Query
mutation UpdateCustomExtensionName($updateNameInput: UpdateCustomExtensionNameInput!) {
  update_custom_extension_name(input: $updateNameInput) {
    extension {
      id
    }
  }
}
Variables
{
  "updateNameInput": {
    "id": "ef171569-eead-46b4-8b92-41b26806bae8",
    "name": "test-extension.jar"
  }
}