Can I add new fields in Firebase using Reactjs?
I want to add a new field like the picture below, but I don't know how In the last question, I was offered a method called {merge: true} and I used it, but it's still the same situation If I…
I want to add a new field like the picture below, but I don't know how In the last question, I was offered a method called {merge: true} and I used it, but it's still the same situation If I…
I have a ViewModel that accesses the database (Firebase) and counts documents. The structure of the database is this: Collection "Posts" --> Document --> Collection "Likes" --> Documents. So I access the collection "Posts" and then for each document that…
I am using: [email protected] [email protected] [email protected] I have created a store for the authentication with a firebase db. The code is as follow: import { defineStore } from 'pinia' import { createUserWithEmailAndPassword,signInWithEmailAndPassword,signOut,onAuthStateChanged } from "firebase/auth"; import { auth } from…
I'm using Firebase Hosting to deploy my web app which uses NextJS. In the last deploy in late March 2023 I was able to deploy with the following steps but now I get an error where the pages directory is…
I have two collections: Db.collection(groups) Db.collection(users) The group doc stores a map of members. Id like to fire a function which iterates over the collection, storing aggregated data from the user document (eg. Number activities last week) How to handle…
Building Registration api for student with using of Firebase, already initialize Firebase. trying all the different methods and see all the answer on stack overflow but still got the error and double check my Firebase initialize error show in portman…
I admittedly still have poor understanding of null checks but I do understand the gist of it (I think lol). However in this case I'm quite confused why I'm getting a null check exception. I'm storing the data inside textControllers…
I am able to receive the locally scheduled notifications for both Android and IOS and I am trying to navigate the user to screens according to the type of notification when the user taps on the notification. IOS works fine…
AngularFire / Firebase Debug Token Issues In my app.module.ts: import <various imports>... declare global { // eslint-disable-next-line no-var var FIREBASE_APPCHECK_DEBUG_TOKEN: boolean | string | undefined; } self.FIREBASE_APPCHECK_DEBUG_TOKEN = environment.appCheckDebug; // set to <debugToken> that registered with App-Check in Firebase Console…
I have a firebase function that uses worker_threads to off load some cpu intensive tasks. To initialize the workerThread I give it a local file path to the worker file. But when the firebase function is executed I get the…