-
Notifications
You must be signed in to change notification settings - Fork 1
Home
spatils edited this page Jan 2, 2021
·
3 revisions
This utility allows you execute queries against google firestore database . Documents can be directly opened from the result. Following features are enabled
- select query
- where clause
- limit
- order by
Query | Description |
---|---|
select * from City | This query returns results from the City collection |
select * from City where cityName = 'New York' and country = 'USA' | This query returns from City collection with matching criteria |
select * from City order by cityName desc | This query returns from City collection order by cityName |
select * from City limit 10 | This query returns first 10 rows from City collection |