INTERFACE

MutationResponse

The result of a mutation operation.

link GraphQL Schema definition

  • interface MutationResponse {
  • # An HTTP status code representing the transactional value of the data or state
  • # change.
  • code: String!
  • # If true, indicates mutation was successfull; false otherwise.
  • success: Boolean!
  • # A human-readable description of the status of the transaction and data or state
  • # change.
  • message: String!
  • }