Skip to content

FieldError

Information about field that didn’t pass validation

Fields

field · String · Field name that caused these errors
message · String! · required · Validation message

Used By

Definition

"""
Information about field that didn’t pass validation
"""
type FieldError {
"""
Field name that caused these errors
"""
field: String
"""
Validation message
"""
message: String!
}