Complete error Get https://firestore.googleapis.com/google.firestore.v1.Firestore/Write/channel?database=projects%2Fnetflixclone-001%2Fdatabases%2F(default)&gsessionid=Il1qOZrt3xwI9HsitxL5j4_GdibS-ga9&VER=8&RID=rpc&SID=MgLGFVuM420X7FPF_SYqrg&CI=0&AID=0&TYPE=xmlhttp&zx=fhlml28c0…
Tag: firebase
Must use import to load ES Module .eslintrc.js
I am trying to fix this problem for hours. I’ve read nearly every post about this, but still, I came to no solution. I am trying to deploy a firebase-function with the “https got-library” dependency, but no matter what I do, nothing works. I am not the best with node-js or typescript (usuall…
How can I read data from firestore database in a schedule function? [closed]
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 1 year ago. The community reviewed whether to reopen this question 1 year ago and left it closed: Original close reason(s) were…
Firebase – How to extend FirebaseError?
I am implementing a cloud function for signing up with unique username and password. In order to throw exceptions, I was previously doing the following: signUpValidation.js signUp.function.js But, I don’t really like this way of throwing the exceptions in the signUpValidation module… it makes more…
How do I order my database results from Firestore?
I am making an app that tracks the number of users’ tardiness using Firestore, but I can’t figure out how to order the list of results by number of tardy. I’ve tried using the orderBy() function from Firebase docs, but I haven’t been able to implement it correctly with my existing code…
Getting `eslint’ – parsing error, while compiling firebase cloud function
Recently I’ve started working on a project based on firebase cloud functions and firestore database. I’m writing a cloud function trigger function which will query a “Collection group”, on a new document being created. Below is the cloud function code file: But while compiling i am bei…
React Native – TypeError: _firebase.default.auth is not a function
I have a React Native App and have the following function: This above code worked in Expo, but I have a new react native project (not built using expo) and this is failing: I have the following in my package.json file: And my firebase.js file is like so (root directory) Im getting the following error: TypeErr…
Change only one specific value from dynamic input field
i need some help. So i have: This iterate some data from Firebase Firestore into the web page. Then there’s an input field to change the age. If i want to change doc.age, how do i do that? If i just write it like above, then if there are 10 names, all names will have the same age. How do
Firebase Version 9 using multiple conditional where clauses
I’m updating a project from Firebase Version 8 to Version 9. I have conditional filtered queries that used to be structured as follows: Then the query gets executed in a hook that rerenders everytime the filters change. Using Version 8, this works perfectly. In version 9, queries are now build to follow…
`Firebase` package was successfully found. However, this package itself specifies a `main` module field that could not be resolved
I’m trying to read and write to firestore, use firebase’s authentication, and firebase’s storage within a expo managed react-native application. Full Error: My firebase config file: I installed the firebase package with: Any help would be greatly appreciated. Thank you! Answer To reduce the …