Interface GraphQLExtensionUpdateActionsFailedError

Returned when update actions could not be applied to the resource (for example, because a referenced resource does not exist). This would result in a 400 Bad Request response if the same update action was sent from a regular client.

interface GraphQLExtensionUpdateActionsFailedError {
    code: "ExtensionUpdateActionsFailed";
    extensionErrors: ExtensionError[];
    extensionExtraInfo?: any;
    localizedMessage?: LocalizedString;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

code: "ExtensionUpdateActionsFailed"
extensionErrors: ExtensionError[]

Additional errors related to the API Extension.

extensionExtraInfo?: any

Any information that should be returned to the API caller.

localizedMessage?: LocalizedString

User-defined localized description of the error.

Generated using TypeDoc