Open m1ga opened 1 year ago
Following up the Firestore Database query method I'm adding more methods
updateFirestore to add or update documents:
FirebaseDatabase.updateFirestore({ collection: "", document: "", data: {} });
deleteFirestore to delete documents:
FirebaseDatabase.deleteFirestore({ collection: "", document: "" });
Everything still WIP but I need it for a current project :smile: At the moment only the query part (which works fine) but I think we can add some more features too
query
Following up the Firestore Database query method I'm adding more methods
updateFirestore to add or update documents:
deleteFirestore to delete documents:
Everything still WIP but I need it for a current project :smile: At the moment only the
query
part (which works fine) but I think we can add some more features too