Romain Vialard

Results 4 comments of Romain Vialard

Also note that when you manually deploy as a web app your project (using the "Deploy as web app" menu entry), it automatically generates a new deployment (or update the...

You can try that this connector to Firestore: https://github.com/grahamearley/FirestoreGoogleAppsScript Firestore & the Firebase Realtime Database are 2 different products, hence different connectors.

@vn78dev getData() supports optQueryParameters as a second parameter. https://github.com/RomainVialard/FirebaseApp#getdatapath-optqueryparameters For pagination you can use parameters like limitToFirst & startAt https://firebase.google.com/docs/database/rest/retrieve-data#section-rest-filtering

In that case, should existing methods of the FirebaseApp lib be available at: FirebaseApp.projects.get().realtimeDatabaseInstance.setData() .getData() etc...? or do we keep getDatabaseByUrl() and simply add .projects? Wouldn't it be weird to...