Skip to content

Implement endBefore for RTDB queries #2302

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

Merged
merged 13 commits into from
Jan 14, 2021
6 changes: 6 additions & 0 deletions firebase-database/api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,12 @@ package com.google.firebase.database {
method @NonNull public com.google.firebase.database.Query endAt(@Nullable String, @Nullable String);
method @NonNull public com.google.firebase.database.Query endAt(double, @Nullable String);
method @NonNull public com.google.firebase.database.Query endAt(boolean, @Nullable String);
method @NonNull public com.google.firebase.database.Query endBefore(@Nullable String);
method @NonNull public com.google.firebase.database.Query endBefore(double);
method @NonNull public com.google.firebase.database.Query endBefore(boolean);
method @NonNull public com.google.firebase.database.Query endBefore(@Nullable String, @Nullable String);
method @NonNull public com.google.firebase.database.Query endBefore(double, @Nullable String);
method @NonNull public com.google.firebase.database.Query endBefore(boolean, @Nullable String);
method @NonNull public com.google.firebase.database.Query equalTo(@Nullable String);
method @NonNull public com.google.firebase.database.Query equalTo(double);
method @NonNull public com.google.firebase.database.Query equalTo(boolean);
Expand Down
Loading