Interface GraphQLExtensionUpdateActionsFailedError

All Superinterfaces:
GraphQLErrorObject
All Known Implementing Classes:
GraphQLExtensionUpdateActionsFailedErrorImpl

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.


Example to create an instance using the builder pattern

     GraphQLExtensionUpdateActionsFailedError graphQLExtensionUpdateActionsFailedError = GraphQLExtensionUpdateActionsFailedError.builder()
             .plusExtensionErrors(extensionErrorsBuilder -> extensionErrorsBuilder)
             .build()