Risposte:
Dovresti essere in grado di farlo in questo modo (poiché stai utilizzando l'API della query):
Entrant.where("pincode").ne(null)
... che risulterà in una query mongo simile a:
entrants.find({ pincode: { $ne: null } })
Alcuni link che potrebbero aiutare:
...("myArraySubDoc[0].someValue").ne(true)
?
where("myArraySubDoc.0.someValue").ne(true)
Sono finito qui e il mio problema era che stavo cercando
{$not: {email: /@domain.com/}}
invece di
{email: {$not: /@domain.com/}}
seleziona i documenti in cui il valore del campo non è uguale al valore specificato. Ciò include i documenti che non contengono il campo.
User.find({ "username": { "$ne": 'admin' } })
$ nin seleziona i documenti in cui: il valore del campo non è nella matrice specificata o il campo non esiste.
User.find({ "groups": { "$nin": ['admin', 'user'] } })
conteggio totale dei documenti in cui il valore del campo non è uguale al valore specificato.
async function getRegisterUser() {
return Login.count({"role": { $ne: 'Super Admin' }}, (err, totResUser) => {
if (err) {
return err;
}
return totResUser;
})
}
Ok ragazzi ho trovato una possibile soluzione a questo problema. Mi sono reso conto che i join non esistono in Mongo, ecco perché prima devi interrogare gli ID dell'utente con il ruolo che ti piace, e poi fare un'altra query al documento dei profili, qualcosa del genere:
const exclude: string = '-_id -created_at -gallery -wallet -MaxRequestersPerBooking -active -__v';
// Get the _ids of users with the role equal to role.
await User.find({role: role}, {_id: 1, role: 1, name: 1}, function(err, docs) {
// Map the docs into an array of just the _ids
var ids = docs.map(function(doc) { return doc._id; });
// Get the profiles whose users are in that set.
Profile.find({user: {$in: ids}}, function(err, profiles) {
// docs contains your answer
res.json({
code: 200,
profiles: profiles,
page: page
})
})
.select(exclude)
.populate({
path: 'user',
select: '-password -verified -_id -__v'
// group: { role: "$role"}
})
});
Ciao ragazzi, sono bloccato con questo. Ho un profilo documento che ha un riferimento a Utente, e ho provato a elencare i profili in cui user ref non è nullo (perché ho già filtrato per rol durante il popolamento), ma dopo aver cercato su google alcune ore non riesco a capirlo Come si può ottenere. Ho questa domanda:
const profiles = await Profile.find({ user: {$exists: true, $ne: null }}) .select("-gallery") .sort( {_id: -1} ) .skip( skip ) .limit(10) .select(exclude) .populate({ path: 'user', match: { role: {$eq: customer}}, select: '-password -verified -_id -__v' }) .exec(); And I get this result, how can I remove from the results the user:null colletions? . I meant, I dont want to get the profile when user is null (the role does not match). { "code": 200, "profiles": [ { "description": null, "province": "West Midlands", "country": "UK", "postal_code": "83000", "user": null }, { "description": null, "province": "Madrid", "country": "Spain", "postal_code": "43000", "user": { "role": "customer", "name": "pedrita", "email": "myemail@gmail.com", "created_at": "2020-06-05T11:05:36.450Z" } } ], "page": 1 }
Grazie in anticipo.