Firebase Querry

Still searching … but …

yup able to filter by one key only

See here:

Easiest idea in the above would be to create another “tag” containing both the name and the age

yup patch-up seems only way forward thanks

A video from David East (Google/Firebase) showing exactly this when converting SQL queries to Firebase queries (example 8) - no excuse made for rubbish querying options :wink:

I guess you could come up with another workaround:

  1. Query the first parameter (e.g. “name”)
  2. When that json comes back, POST/PUT this to a temp tag/bucket in your firebase
  3. Query the temp tag with second parameter (e.g.“age”)
  4. You have your json back with multiple queries
  5. If you use PUT for you temp tag, it will overwrite what ever is there.
1 Like