File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
app/code/Magento/GraphQl/etc Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -290,12 +290,12 @@ enum BatchMutationStatus {
290290}
291291
292292interface ErrorInterface @typeResolver (class : " \\ Magento\\ GraphQl\\ Model\\ Mutation\\ Resolver\\ ErrorTypeResolver" ) {
293- message : String !
293+ message : String ! @doc ( description : " The returned error message. " )
294294}
295295
296- type NoSuchEntityUidError implements ErrorInterface {
297- uid : ID !
296+ type NoSuchEntityUidError implements ErrorInterface @doc ( description : " Contains an error message when an invalid UID was specified. " ) {
297+ uid : ID ! @doc ( description : " The specified invalid unique ID of an object. " )
298298}
299299
300- type InternalError implements ErrorInterface {
300+ type InternalError implements ErrorInterface @doc ( description : " Contains an error message when an internal error occurred. " ) {
301301}
You can’t perform that action at this time.
0 commit comments