Я пытаюсь получить документы на основе ссылки на вложенные документы.
Я пытался
Blog.find({"user.blocked" : false})
, чтобы этот запрос не извлекал никаких документов.
Вот мои схемы
const BlogSchema = new mongoose.Schema({
category: {type: String, trim: true},
user: {type: mongoose.Schema.Types.ObjectId, ref: 'User', required: true},
title: {type: String},
description: {type: String},
}, {timestamps: true});
const UserSchema = new mongoose.Schema({
name: {type: String, required: true},
blocked: Boolean,
}, {timestamps: true});
mongoose.model('User', UserSchema);
mongoose.model('Blog', BlogSchema);