0
これはmongoの構文であると仮定しています。これは、流星のアプリからだ:$or
何上記で流星群のアプリでMongoの一部または一部ですか?
const { selectedSectionId } = this.state;
const assignmentsSelector = {
formativeId: this.props.formative._id,
$or: [{ public: true }],
};
if (selectedSectionId && selectedSectionId !== 'all') {
assignmentsSelector.$or.push({ sectionId: selectedSectionId });
}
?