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 {
290
290
}
291
291
292
292
interface ErrorInterface @typeResolver (class : " \\ Magento\\ GraphQl\\ Model\\ Mutation\\ Resolver\\ ErrorTypeResolver" ) {
293
- message : String !
293
+ message : String ! @doc ( description : " The returned error message. " )
294
294
}
295
295
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. " )
298
298
}
299
299
300
- type InternalError implements ErrorInterface {
300
+ type InternalError implements ErrorInterface @doc ( description : " Contains an error message when an internal error occurred. " ) {
301
301
}
You can’t perform that action at this time.
0 commit comments