MutationFieldError
A type indicating an error has occurred with a specific field in the input.
type MutationFieldError {
field: String!
message: String!
type: MutationFieldErrorType!
}
Fields
MutationFieldError.field
● String!
non-null scalar
The name of the field for which the error happened.
MutationFieldError.message
● String!
non-null scalar
An English technical description of the error. This error is usually meant to be read by a developer and not an end user.
MutationFieldError.type
● MutationFieldErrorType!
non-null enum
The type of the error. Can be used to display a user friendly error message.
Member of
MutationError
object