Is there any UI Console where I can query the Firebase Database?

FirebaseFirebase Realtime-DatabaseFirebase Console

Firebase Problem Overview


Is there any UI Console where I can query the Firebase Database?? Basically I wish to query the data just like we can query other databases using UI

Firebase Solutions


Solution 1 - Firebase

The Firebase Console has built-in support for sorting and filtering the data in a Firestore collection. Click the little filter icon at the top of the collection (next to the overflow menu ě).

Many developers also use a local node.js script/REPL (such as in this video tutorial explaining Firebase Queries) or set up a jsfiddle/jsbin (such as in this question).

Solution 2 - Firebase

EDIT: As mentioned in the comments, the docs link is currently dead. This project might be abandoned. Please try the next answer.

EDIT 2: I removed links to the software and docs since it looked like some phishing website took over the domain.

Original answer:

Check out Firebase Admin. It's a UI for Linux, OSX and Windows and it has a Query tab that lets you experiment with queries.

Read the docs on how to create the private key the app needs to connect to your project.

Solution 3 - Firebase

I found and have been using Firestation. Can be used on windows, mac, and linux. I would say to check it out. You can run sql queries against your firebase database.

You can view the source [here][2].

[2]: https://github.com/JoeRoddy/firestation "here"

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionmohan mishraView Question on Stackoverflow
Solution 1 - FirebaseFrank van PuffelenView Answer on Stackoverflow
Solution 2 - FirebaseKonrad KissView Answer on Stackoverflow
Solution 3 - FirebasekelsheikhView Answer on Stackoverflow