• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

231
Views
Mongo-go-driver nested query golang

I used to have two filters to get data from my mongoDB, however I do not think that it is efficient considering it has to do two queries to the DB.


    filter = bson.M{
        "$and": []bson.M{
            {"partnerA.id": id},
            {"unlocked": false},
            {"deletedAt": nil},
        },
    }

    filter = bson.M{
        "$and": []bson.M{
            {"partnerB.id": id},
            {"unlocked": false},
            {"deletedAt": nil},
        },
    }

I tried to combine them using this solution I found and came out with this filter:

    filter := bson.M{
        "$and": []bson.M{
            {"partnerA.id": id},
            {"unlocked": false},
            {"deletedAt": nil},
        },
        "$or": bson.A{
            bson.M{"$and": []bson.M{
                {"partnerB.id": id},
                {"unlocked": false},
                {"deletedAt": nil},
            }},
        },
    }

However it does not work and I can't find the solution for it. Does anyone see the problem for this?

Thank you.

over 3 years ago · Santiago Trujillo
1 answers
Answer question

0

I presume you are trying to combine those two queries with OR operator. Another thing, I saw two similar clauses between the two, it's "unlocked": false and "deletedAt": nil.

You can have shorter query like below:

filter := bson.M{
    "$or": []bson.M{
        {"partnerA.id": id},
        {"partnerB.id": id},
    },
    "unlocked": false,
    "deletedAt": nil,
}

Update #1

How about a new query where I only return the values if ((partnerA.id = id and partnerA.unlocked = true) or (partnerB.id = id and partnerB.unlocked = true)) Blockquote

filter := bson.M{
    "$or": []bson.M{
        {
            "partnerA.id": id,
            "partnerA.unlocked": true,
        },
        {
            "partnerB.id": id,
            "partnerB.unlocked": true,
        },
    },
}
over 3 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error