I'm trying to recover a firebase node, but it needs to match two parameters, start date and end date. The node gets the way I was given an option would be to put another value for date_start_end: 1478484000_1478397600 , so it does not have to fetch between dates. That would not be a viable option.
I'vealsobeentryingtouseitsothefirebasedoesnotsupportmorethanoneorderBy
.orderByChild("date_start").startAt(mDay).endAt(mDay)
.orderByChild("date_end").startAt(mDay).endAt(mDay);
This takes the error of
java.lang.IllegalArgumentException: You can't combine multiple orderBy calls!
Any suggestions for resolving this issue?