假设我有以下两种模式:
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
,但到目前为止没有运气。
另一件事(更相关的方式)是获取每种锻炼类型的所有最大权重。