isPartialSuccess property

bool isPartialSuccess
inherited

The operation has been partially executed and it has been acknowledged Please note that if the write concern was not majority the operation could be rollbacked yet in case of primary failure

Implementation

bool get isPartialSuccess {
  if (!isAcknowledged) {
    return false;
  }
  return isPartial;
}