Example #1
0
 /**
  * Flush upserts
  *
  * @param string $objectType
  * @return SaveResult[]
  */
 private function flushUpserts($objectType)
 {
     $result = $this->client->upsert($this->bulkUpsertMatchFields[$objectType], $this->bulkUpsertRecords[$objectType], $objectType);
     $this->bulkUpsertRecords[$objectType] = array();
     return $result;
 }