We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to use batched writes to do the following operation. The item gets removed but the array is not updated. This works in vanilla firestore.
const commit = batch(db); const sceneID = ######; const layoutID = ######; const itemID = #####; //remove item doc from scene subcollection commit.layouts(layoutID).scenes(sceneID).items.remove(itemID); //remove item id from item field in scene commit.layouts(layoutID).scenes.update(sceneID, ($) => $.field("items").set($.arrayRemove(itemID)) ); commit();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to use batched writes to do the following operation. The item gets removed but the array is not updated. This works in vanilla firestore.
The text was updated successfully, but these errors were encountered: