Skip to content

Instantly share code, notes, and snippets.

@luishgp
Created April 7, 2020 20:44
Show Gist options
  • Save luishgp/86329ac5eaf5e8e286bbb117cbde781d to your computer and use it in GitHub Desktop.
Save luishgp/86329ac5eaf5e8e286bbb117cbde781d to your computer and use it in GitHub Desktop.
Update me batch firestore
<?php
$batch = $firestore->batch();
$ref = $firestore->collection('teste')->document($collect);
$batch->update($ref, [
['path' => 'nome_usuario_coleta', 'value' => 'Teste de Atualização em Batch']
]);
$batch->set($ref, [
'teste' => 'Ok'
]);
$batch->commit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment