如何在Realm-js中获得集合的最大值?

时间:2018-08-04 11:53:41

标签: javascript nosql realm realm-mobile-platform

假设我有以下两种模式:

const ExerciseSchema = {
  name: 'Exercise',
  primaryKey: 'id',
  properties: {
    id: 'string',
    type: 'string',
    sets: { type: 'list', objectType: 'Set' },
  },
};

const SetSchema = {
  name: 'Set',
  primaryKey: 'id',
  properties: {
    id: 'string',
    reps: 'int',
    weight: { type: 'float', optional: true },
  },
};

我想得到:对于所有type X的练习,最大为weight的集合。在Realm中使用一个查询是否有可能?正在调查SUBQUERY@max,但到目前为止没有运气。

另一件事(更相关的方式)是获取每种锻炼类型的所有最大权重。

0 个答案:

没有答案