hansemannn / titanium-firebase-database

Use the Firebase Realtime Database SDK in Axway Titanium 🚀
Other
7 stars 5 forks source link

feat(android): firestore database #9

Open m1ga opened 1 year ago

m1ga commented 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