You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating from version 10.2.0 to 10.3.0, one of our functions stopped working. Created a test function and tried to get max value on Objects using max resulting in an error.
Expected Results
Get the max value from list of objects.
Actual Results
Got the following error: UNITO-UNDERSCORE!20210405-094908!
Steps to Reproduce
Create Realm
Get objects
Attempt to get max value from objects
Code Sample
Model = {
name: "Test",
properties: {
count: { type: "int" },
},
};
// Receives list of objects
const objects = realm.objects("TEST");
// attempt to call max on list of objects
return objects.max("count");
// receives Not implemented
Version of Realm and Tooling
Realm JS SDK Version: 10.3.0
Node or React Native: React Native 0.64
Client OS & Version: Android 8.0.0 and iOS 14.4.2
Which debugger for React Native: None
The text was updated successfully, but these errors were encountered:
Goals
After updating from version
10.2.0
to10.3.0
, one of our functions stopped working. Created a test function and tried to get max value on Objects usingmax
resulting in an error.Expected Results
Get the max value from list of objects.
Actual Results
Got the following error:
UNITO-UNDERSCORE!20210405-094908!
Steps to Reproduce
Code Sample
Version of Realm and Tooling
The text was updated successfully, but these errors were encountered: