Giter Club home page Giter Club logo

Comments (4)

kofrasa avatar kofrasa commented on July 19, 2024 1

Hi @vigan-abd, thanks for reporting this issue. So the behaviour is not "broken" per se but rather it is a side effect of how operator loading works in the library which is by design to support tree-shaking for web installations. All query operators used in the update expression should be explicitly loaded.

That said, it might be better to load the basic query operators directly in the update context as done here. This would make the basic query operators available.

You can add the snippet below to your imports to fix it.

const { OperatorType, useOperators } = require("mingo/core");
const queryOperators = require("mingo/operators/query");
const { updateObject } = require('mingo/updater')

useOperators(OperatorType.QUERY, queryOperators);

A simpler option is to just use the side effect module below which loads a few more unnecessary operators.

require("mingo/init/basic") // loads minimal operators (including "$in") required for most common use-cases.
const { updateObject } = require('mingo/updater')

// do stuff here.

Will keep this issue open for now while I ponder a better way to handle this.

from mingo.

kofrasa avatar kofrasa commented on July 19, 2024

Running your example with the operators loaded is a no-op. For an actual MongoDB database it seems to be disallowed with the error below. See example here https://mongoplayground.net/p/JRwrWHT6pN3.

fail to run update: write exception: write errors: [Cannot use the part (_id) of (comments._id) to traverse the element ({comments: [ { date: null, body: "been there", _id: "comment1" }, { _id: "comment2", date: null, body: "done that" } ]})]

from mingo.

vigan-abd avatar vigan-abd commented on July 19, 2024

sorry, it should have been like this

db.collection.update({},
{
  $pull: {
    comments: {
      _id: {
        $in: [
          "comment1"
        ]
      }
    }
  }
},
{
  "upsert": false
})

from mingo.

kofrasa avatar kofrasa commented on July 19, 2024

That works as expected.

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.