Does Firebase provide all queries like parse database for Android?
Like wherecontaiendIn(), Equalto() etc?
Does Firebase provide all queries like parse database for Android?
Like wherecontaiendIn(), Equalto() etc?
 
    
     
    
    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
