-
Notifications
You must be signed in to change notification settings - Fork 1.9k
FirebaseRecyclerAdapter view filter #135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
At the moment, server-side filtering is your best option. We're considering adding client-side filtering (#15), but it's not a very natural fit with the realtime nature of the Firebase Database. |
Then is there any options to filter not equal to any specific value in query.? |
The query model of the Firebase Database does not support a "not equal" But performing such a filter client-side would in that case also not be a A better option would be to model your data in a way that allows this query On Mon, May 23, 2016 at 6:28 AM sivai2i [email protected] wrote:
|
But I couldn't have a model like that. Let me tell the scenario which i am facing now. I am developing a chat application where i need to show the list of registered users. All users are under the same node "user". I am fetching all the users from this node so, I need to filter current user from the list of users. |
Exact same issue that I'm facing. Can anyone help us on this one? @sivai2i , A temporary solution for this would be to let the |
same problem here |
I have same problem too. I want to show a list of users except the current user |
In your
and override |
@sivai2i are you maybe using |
I have created custom FirebaseRecyclerAdapter that support the Filterable feature. |
Is there any way to stop accessing a particular child from a node using firebase rules? So this problem can be solved easily? |
I need to filter the data in client side from FirebaseRecyclerAdapter. Is there any way to do it without removing the data in firebase database?
The text was updated successfully, but these errors were encountered: