Zapytanie Mongoose, w którym wartość nie jest null

101

Chce wykonać następujące zapytanie:

Entrant
    .find
      enterDate : oneMonthAgo
      confirmed : true
    .where('pincode.length > 0')
    .exec (err,entrants)->

Czy poprawnie wykonuję klauzulę Where? Chcę wybrać dokumenty, w których pincodenie jest null.

wesbos
źródło

Odpowiedzi:

184

Powinieneś móc to zrobić w następujący sposób (tak jak używasz interfejsu API zapytania):

Entrant.where("pincode").ne(null)

... co spowoduje zapytanie mongo podobne do:

entrants.find({ pincode: { $ne: null } })

Kilka linków, które mogą pomóc:

numery1311407
źródło
2
co to znaczy ne?
wesbos
3
„nierówne”, dodając linki do odpowiedzi
numery1311407
Dokumentacja mongodb na ten temat jest tutaj (teraz): docs.mongodb.org/manual/reference/operator/query Aktualny dokument na ten temat jest tutaj: mongoosejs.com/docs/api.html#query_Query-ne
zeropaper,
Jak to osiągnąć z tablicą, np. ...("myArraySubDoc[0].someValue").ne(true)?
Steve K
@SirBenBenji coś w styluwhere("myArraySubDoc.0.someValue").ne(true)
numbers1311407
9

Skończyło się tutaj, a moim problemem było to, o co pytałem

{$not: {email: /@domain.com/}}

zamiast

{email: {$not: /@domain.com/}}
MalcolmOcean
źródło
Tylko uwaga, to jest dokładnie to, czego szukałem, dzięki!
Cacoon
Próbowałem znaleźć $ nie w dokumencie api! dzięki!
Jay Edwards,
7

$ ne

wybiera dokumenty, w których wartość pola nie jest równa określonej wartości. Obejmuje to dokumenty, które nie zawierają tego pola.

User.find({ "username": { "$ne": 'admin' } })

Nin $

$ nin wybiera dokumenty, w których: wartość pola nie znajduje się w określonej tablicy lub pole nie istnieje.

User.find({ "groups": { "$nin": ['admin', 'user'] } })
Tính Ngô Quang
źródło
0

łącznie zlicza dokumenty, w których wartość pola nie jest równa określonej wartości.

async function getRegisterUser() {
    return Login.count({"role": { $ne: 'Super Admin' }}, (err, totResUser) => {
        if (err) {
            return err;
        }
        return totResUser;
    })
}
Vadivel Subramanian
źródło
0

Ok chłopaki, znalazłem możliwe rozwiązanie tego problemu. Zdałem sobie sprawę, że łączenia nie istnieją w Mongo, dlatego najpierw musisz odpytać identyfikatory użytkownika z rolą, którą lubisz, a następnie wykonać kolejne zapytanie do dokumentu profili, coś takiego:

    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"} 
          })
    });
R0bertinski
źródło
-1

Witam, utknąłem z tym. Mam profil dokumentu, który ma odniesienie do użytkownika, i próbowałem wyświetlić profile, w których referencja użytkownika nie jest zerowa (ponieważ filtrowałem już według roli podczas populacji), ale po kilku godzinach wyszukiwania w Google nie mogę się tego dowiedzieć jak to zdobyć. Mam to zapytanie:

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": "[email protected]",
                "created_at": "2020-06-05T11:05:36.450Z"
            }
        }
    ],
    "page": 1
}

Z góry dziękuję.

R0bertinski
źródło
Nie powinieneś zadawać pytań w formie odpowiedzi
Yasin Okumuş