Mutation

delete_extension

Remove a custom extension or a BApp from the library and any sites it is assigned to.

Arguments

input: DeleteExtensionInput!


Input Fields

id(): ID!
The unique identifier of the extension to delete.

Return Fields

id(): ID!
The unique identifier of the deleted extension.

Example

Query
mutation DeleteExtension($input: DeleteExtensionInput!) {
  delete_extension(input: $input) {
    id
  }
}
Variables
{
  "input": {
    "id": "86ece526-7060-4f77-a40e-0106dfa69357"
  }
}