Mutation

update_custom_extension_description

Updates the description property of a custom extension.

Arguments

input: UpdateCustomExtensionDescriptionInput!

The new description for the custom extension.


Input Fields

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

Return Fields

extension(): Extension!
The uploaded extension.

Example

Query
mutation UpdateCustomExtensionDescription($updateDescriptionInput: UpdateCustomExtensionDescriptionInput!) {
    update_custom_extension_description(input: $updateDescriptionInput) {
    extension {
      id
    }
  }
}
Variables
{
  "updateDescriptionInput": {
    "id": "92e83f93-679f-4fd0-8d00-efeb555efb6d",
    "description": "Another example extension"
  }
}