We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The string query parser is not able to find fields by their public field name on sort and distinct operations:
sort
distinct
No property 'mHungarian' found on object type 'class_with_policy' specified in 'sort'
The text was updated successfully, but these errors were encountered:
#4555 fixed the issue except for one corner case, name aliasing does not work when using the public field name on backlinks of RealmResults.
@LinkingObjects("columnRealmLink") final private RealmResults<AllTypes> columnRealmBackLink = null;
distinct(columnRealmLink) = works distinct(columnRealmBackLink)= does not work
distinct(columnRealmLink)
distinct(columnRealmBackLink)
Sorry, something went wrong.
duplicate with #4524
ironage
Successfully merging a pull request may close this issue.
The string query parser is not able to find fields by their public field name on
sort
anddistinct
operations:No property 'mHungarian' found on object type 'class_with_policy' specified in 'sort'
The text was updated successfully, but these errors were encountered: