0

Does Firebase provide all queries like parse database for Android?

Like wherecontaiendIn(), Equalto() etc?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Rehan Sarwar
  • 994
  • 8
  • 20
  • 1
    They dont have query .withinRange() - geolocation...but you can always build your own... It does nt know why you ask here and just wont check the documentation though... – Mazel Tov Jul 25 '16 at 11:53
  • See http://stackoverflow.com/questions/22506531/how-to-perform-sql-like-operation-on-firebase – Frank van Puffelen Jul 25 '16 at 15:45

1 Answers1

2

Pretty theoretical question. Try looking in their documentation: Firebase Docs

Firebase allows custom queries and some pre-defined methods such as:

Query: startAt(boolean value, String key) Create a query constrained to only return child nodes with a value greater than or equal to the given value, using the given orderBy directive or priority as default, and additionally only child nodes with a key greater than or equal to the given key.

And many others such as:

startAt(boolean value)

nodes with a value greater than or equal to the given value, using the given orderBy directive or priority as default. startAt(double value, String key)

Create a query constrained to only return child nodes with a value greater than or equal to the given value, using the given orderBy directive or priority as default, and additionally only child nodes with a key greater than or equal to the given key.Create a query constrained to only return child

Check their complete database references here: Firebase Database API

Check all queries functions: Firebase Queries

Or you can check their complete API here: API Reference Firebase

Tanishq Sharma
  • 538
  • 2
  • 14