ENUM

DeleteExtensionError

Error types returned for the deleteExtension mutation.

link GraphQL Schema definition

1enum DeleteExtensionError {
2
3# Returned when the extension id was not specified.
4MISSING_EXTENSION_ID
5
6# Returned when the id specified could not be found.
7EXTENSION_NOT_FOUND
8
9# Returned when the calling user does not have access to delete the extension.
10UNAUTHORIZED
11}