--- title: DisplayableError - GraphQL Admin description: Represents an error in the input of a mutation. api_version: 2026-04 api_name: admin type: interface api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/latest/interfaces/DisplayableError md: >- https://shopify.dev/docs/api/admin-graphql/latest/interfaces/DisplayableError.md --- # Displayable​Error interface Represents an error in the input of a mutation. ## Fields * field [\[String!\]](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) The path to the input field that caused the error. * message [String!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) non-null The error message. *** ##### Variables ```json { "field": "", "message": "" } ``` ##### Schema ```graphql interface DisplayableError { field: [String!] message: String! } ```