In Firestore, I have documents that have fields that may or may not be null. If there are indeed holding a null
value, I'd like to write on them. If not, I don't want to write to them.
Is there a way to do this without checking it before updating it?
Note: I am operating on Firebase Cloud Functions.