OBJECT

SuccessResponseWithId

Returned when the result of a mutation is not consistent. The message property can sometimes contain a description of the failure, if success is false. The id may contain the model created if success is true.

link GraphQL Schema definition

  • type SuccessResponseWithId {
  • # Will be true if the operation succeeded.
  • success: Boolean!
  • # The message.
  • message: Text
  • # The ID of the entity.
  • id: Int64Bit
  • }

link Require by