OBJECT

SuccessResponse

Returned when the result of a mutation is only true or false, and there is no other data to return. The message property can sometimes contain a description of the failure, if success is false.

link GraphQL Schema definition

  • type SuccessResponse {
  • # Will be true if the operation succeeded.
  • success: Boolean!
  • # The message.
  • message: Text
  • }

link Require by