Giter Club home page Giter Club logo

Comments (5)

kofrasa avatar kofrasa commented on July 18, 2024

I think your query should be valid but I have to confirm it with MongoDB's behaviour. I remember there were some limitations with the level of nesting in array queries but the current MongoDB version is 3.0 so things might work differently.

Anyway an equally viable alternative for what you are trying to achieve would be to use the $elemMatch operator such as {"key0.key1": {"$elemMatch": {key2: "value2"}}}

from mingo.

gotdan avatar gotdan commented on July 18, 2024

Thanks - Iโ€™m not sure $elemMatch will work with this dataset though, since in some cases the value will be an object and and in some the same key will have an array of objects as the value (depending on how many children there are). I donโ€™t have control over the data format, so one of the nice things about the mongo dot notation is that the same query should work in both cases.

Do you know if there is a way to use $elemMatch or another operator to handle this use case?

from mingo.

kofrasa avatar kofrasa commented on July 18, 2024

In that case you could use an $or operator (a bit of a hack i guess) :).

{$or: [
  {"key0.key1": {"$elemMatch": {key2: "value2"}}},
  {"key0.key1.key2": "value2"}
]}

I will look into the bug soon.

from mingo.

kofrasa avatar kofrasa commented on July 18, 2024

Just release 0.6.1 that fixes the issue.

from mingo.

gotdan avatar gotdan commented on July 18, 2024

Thanks! That was faster than I could implement a work around :).

from mingo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.