FireQL
is the Golang library and interactive CLI tool to query the Google Firestore database using SQL syntax.
It is built on top of the official Google Firestore Client SDK that will allow running queries Cloud Firestore database using SQL syntax.
pgollangi / FireQL
Interactive CLI and Go library to query Google Firestore database using SQL syntax.
FireQL
FireQL
is the Golang library and interactive CLI tool to query the Google Firestore database using SQL syntax.
It is built on top of the official Google Firestore Client SDK that will allow running queries Cloud Firestore database using SQL syntax. Inspired by Firebase FireSQL.
Usage
FireQL
can be used as Go library or interactive command-line tool.
Go Library
An example of querying collections using SQL syntax:
import (
"github.com/pgollangi/fireql"
)
func main() {
fql, err := fireql.New("<GCP_PROJECT_ID>")
//OR
fql, err = fireql.New("<GCP_PROJECT_ID>", fireql.OptionServiceAccount("<SERVICE_ACCOUNT_JSON>"))
if err != nil {
panic(err)
}
// Now, execute SELECT query
result, err := fql.Execute("SELECT * `users` order by id desc limit 10")
if err != nil {
panic(err)
}
_ = result
…Usage
FireQL
can be used as a Go library or interactive command-line tool.
Go Library
An example of querying collections using SQL syntax:
import (
"github.com/pgollangi/fireql"
)
func main() {
fql, err := fireql.New("<GCP_PROJECT_ID>")
//OR
fql, err = fireql.New("<GCP_PROJECT_ID>", fireql.OptionServiceAccount("<SERVICE_ACCOUNT_JSON>"))
if err != nil {
panic(err)
}
// Now, execute SELECT query
result, err := fql.Execute("SELECT * `users` order by id desc limit 10")
if err != nil {
panic(err)
}
_ = result
}
Command-Line
fireql [flags]
Example:
$ fireql --project $PROJECT_ID
Welcome! Use SQL to query Firestore.
Use Ctrl+D, type "exit" to exit.
Visit github.com/pgollangi/FireQL for more details.
fireql>select id, name from users limit 2
+------+------------+
| ID | NAME |
+------+------------+
| 1046 | bob |
| 1047 | smith |
+------+------------+
(2 rows)
fireql>
Read the documentation for more information on CLI usage.
Examples
Some cool SELECT
queries that are possible with FireQL
:
select * from users
select *, id as user_id from users
select id, email as email_address, `address.city` AS city from `users`
select * from users order by 'address.city' desc limit 10
select * from `users` where id > 50
select id, LENGTH(contacts) as total_contacts from `users`
See Wiki for more examples.
Installation
Homebrew
brew install pgollangi/tap/fireql
Updating:
brew upgrade fireql
Scoop (for windows)
scoop bucket add pgollangi-bucket https://github.com/pgollangi/scoop-bucket.git
scoop install fireql
Docker
docker run pgollangi/fireql
Go
go install github.com/pgollangi/fireql@latest
Manual
You can alternately download a suitable binary for your OS at the releases page.
Limitations
All of firestore query limitations are applicable when running queries using FireQL
.
In addition to that:
Only
SELECT
queries for now. Support forINSERT
,UPDATE
, andDELETE
might come in the future.Only
AND
conditions supported inWHERE
clause.No support for
JOIN
s.LIMIT
doesn't accept anOFFSET
, only a single number.No support of
GROUP BY
and aggregate functionCOUNT
.
Future scope
Expand support for all logical conditions in
WHERE
clause by internally issuing multiple query requests to Firestore and merging results locally before returning.GROUP BY
supportSupport other DML queries:
INSERT
,UPDATE
, andDELETE
Thanks for the read! Try using this if you are working with Firestore and share feedback.
Originally posted on my blog https://me.p11r.dev/fireql
Top comments (2)
Nice project. I would love to see something like this written in JavaScript that can run in the browser.
I would update the README and remove
bash
from code snippet that show how use the tool, since it's for bash shell scripts not bash commands, and it shows text as part of bash syntax.Thanks Jakub for the feedback. I'll update README