Skip to content
spatils edited this page Jan 2, 2021 · 3 revisions

Welcome to the firestoreadmin wiki!

What this utility does

This utility allows you execute queries against google firestore database . Documents can be directly opened from the result. Following features are enabled

  1. select query
  2. where clause
  3. limit
  4. order by

Sample Queries

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
Clone this wiki locally