Mongo for each not doing the funtcionHow to execute mongo commands through shell scripts?How to list all collections in the mongo shell?How do I update each dependency in package.json to the latest version?mongo type matching changes when using an indexWrong timezone nodejs mongooseGetting MongoDb document to expire at a certain time using mongooseModelling a repetitive task list in MongoTrying to update an array inside of a Map in MongoDBWhy does mongoose try to create a field with “-1” in element for type map?MongoDB: parse and update document field with it's current value

Is Borg adaptation only temporary?

Single vs Multiple Try Catch

Doesn't the concept of marginal utility speak to a cardinal utility function?

Pandas transform inconsistent behavior for list

What are the electrical characteristics of a PC gameport?

How can an F-22 Raptor reach supersonic speeds without having supersonic inlets?

Cheap oscilloscope showing 16 MHz square wave

When you have to wait for a short time

'spazieren' - walking in a silly and affected manner?

Are there balance issues when allowing attack of opportunity against any creature?

Colored grid with coordinates on all sides?

Displaying Time in HH:MM Format

What are ways to record who took the pictures if a camera is used by multiple people?

Why wasn't Linda Hamilton in T3?

How would a disabled person earn their living in a medieval-type town?

Should we run PBKDF2 for every plaintext to be protected or should we run PBKDF2 only once?

How can I portray a character with no fear of death, without them sounding utterly bored?

Can a country avoid prosecution for crimes against humanity by denying it happened?

From not IT background to being a programmer

How could reincarnation magic be limited to prevent overuse?

Can users with the same $HOME have separate bash histories?

meaning of "educating the ice"?

Is there research on the efficacy of taking good notes in math class?

Can UV radiation be safe for the skin?



Mongo for each not doing the funtcion


How to execute mongo commands through shell scripts?How to list all collections in the mongo shell?How do I update each dependency in package.json to the latest version?mongo type matching changes when using an indexWrong timezone nodejs mongooseGetting MongoDb document to expire at a certain time using mongooseModelling a repetitive task list in MongoTrying to update an array inside of a Map in MongoDBWhy does mongoose try to create a field with “-1” in element for type map?MongoDB: parse and update document field with it's current value






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I want to create a log document for each task that is late.



const dte = new Date();
Task.find()
.where("status")
.ne("Done", "Stuck", "Late")
.where("date")
.lt(dte)
.updateMany( status: "Late" )
.map(task =>
const newLog = new Log(
message: `$moment(dte).format("LT"): The task: $
department.name
is delayed`,
type: "late"
);

newLog.save();
);


I expect to have the logs created at the db, the error message that I got is .map() is not a function.










share|improve this question
























  • updateMany() returns a Promise and a Promise had no map() function. you should do then() after updatedMany().

    – Gerald
    Mar 28 at 0:37












  • I already tried that, it returns: "TypeError: tasks.map is not a function"

    – Luis Doriz
    Mar 28 at 5:37

















0















I want to create a log document for each task that is late.



const dte = new Date();
Task.find()
.where("status")
.ne("Done", "Stuck", "Late")
.where("date")
.lt(dte)
.updateMany( status: "Late" )
.map(task =>
const newLog = new Log(
message: `$moment(dte).format("LT"): The task: $
department.name
is delayed`,
type: "late"
);

newLog.save();
);


I expect to have the logs created at the db, the error message that I got is .map() is not a function.










share|improve this question
























  • updateMany() returns a Promise and a Promise had no map() function. you should do then() after updatedMany().

    – Gerald
    Mar 28 at 0:37












  • I already tried that, it returns: "TypeError: tasks.map is not a function"

    – Luis Doriz
    Mar 28 at 5:37













0












0








0








I want to create a log document for each task that is late.



const dte = new Date();
Task.find()
.where("status")
.ne("Done", "Stuck", "Late")
.where("date")
.lt(dte)
.updateMany( status: "Late" )
.map(task =>
const newLog = new Log(
message: `$moment(dte).format("LT"): The task: $
department.name
is delayed`,
type: "late"
);

newLog.save();
);


I expect to have the logs created at the db, the error message that I got is .map() is not a function.










share|improve this question














I want to create a log document for each task that is late.



const dte = new Date();
Task.find()
.where("status")
.ne("Done", "Stuck", "Late")
.where("date")
.lt(dte)
.updateMany( status: "Late" )
.map(task =>
const newLog = new Log(
message: `$moment(dte).format("LT"): The task: $
department.name
is delayed`,
type: "late"
);

newLog.save();
);


I expect to have the logs created at the db, the error message that I got is .map() is not a function.







node.js mongodb mongoose






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 28 at 0:31









Luis DorizLuis Doriz

51 bronze badge




51 bronze badge















  • updateMany() returns a Promise and a Promise had no map() function. you should do then() after updatedMany().

    – Gerald
    Mar 28 at 0:37












  • I already tried that, it returns: "TypeError: tasks.map is not a function"

    – Luis Doriz
    Mar 28 at 5:37

















  • updateMany() returns a Promise and a Promise had no map() function. you should do then() after updatedMany().

    – Gerald
    Mar 28 at 0:37












  • I already tried that, it returns: "TypeError: tasks.map is not a function"

    – Luis Doriz
    Mar 28 at 5:37
















updateMany() returns a Promise and a Promise had no map() function. you should do then() after updatedMany().

– Gerald
Mar 28 at 0:37






updateMany() returns a Promise and a Promise had no map() function. you should do then() after updatedMany().

– Gerald
Mar 28 at 0:37














I already tried that, it returns: "TypeError: tasks.map is not a function"

– Luis Doriz
Mar 28 at 5:37





I already tried that, it returns: "TypeError: tasks.map is not a function"

– Luis Doriz
Mar 28 at 5:37












1 Answer
1






active

oldest

votes


















0















You can do this.



const dte = new Date();
Task.find(
status:
$ne: ["Done", "Stuck", "Late"]
,
date:
$lt: dte

).then((tasks) =>

// loop through tasks
tasks.forEach(async (task) =>
const newLog = new Log(
message: `$moment(dte).format("LT"): The task: $
department.name
is delayed`,
type: "late"
);

await newLog.save();

// update task
task.set( status: "Late" );
await task.save();
);
)





share|improve this answer


























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55388468%2fmongo-for-each-not-doing-the-funtcion%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0















    You can do this.



    const dte = new Date();
    Task.find(
    status:
    $ne: ["Done", "Stuck", "Late"]
    ,
    date:
    $lt: dte

    ).then((tasks) =>

    // loop through tasks
    tasks.forEach(async (task) =>
    const newLog = new Log(
    message: `$moment(dte).format("LT"): The task: $
    department.name
    is delayed`,
    type: "late"
    );

    await newLog.save();

    // update task
    task.set( status: "Late" );
    await task.save();
    );
    )





    share|improve this answer































      0















      You can do this.



      const dte = new Date();
      Task.find(
      status:
      $ne: ["Done", "Stuck", "Late"]
      ,
      date:
      $lt: dte

      ).then((tasks) =>

      // loop through tasks
      tasks.forEach(async (task) =>
      const newLog = new Log(
      message: `$moment(dte).format("LT"): The task: $
      department.name
      is delayed`,
      type: "late"
      );

      await newLog.save();

      // update task
      task.set( status: "Late" );
      await task.save();
      );
      )





      share|improve this answer





























        0














        0










        0









        You can do this.



        const dte = new Date();
        Task.find(
        status:
        $ne: ["Done", "Stuck", "Late"]
        ,
        date:
        $lt: dte

        ).then((tasks) =>

        // loop through tasks
        tasks.forEach(async (task) =>
        const newLog = new Log(
        message: `$moment(dte).format("LT"): The task: $
        department.name
        is delayed`,
        type: "late"
        );

        await newLog.save();

        // update task
        task.set( status: "Late" );
        await task.save();
        );
        )





        share|improve this answer















        You can do this.



        const dte = new Date();
        Task.find(
        status:
        $ne: ["Done", "Stuck", "Late"]
        ,
        date:
        $lt: dte

        ).then((tasks) =>

        // loop through tasks
        tasks.forEach(async (task) =>
        const newLog = new Log(
        message: `$moment(dte).format("LT"): The task: $
        department.name
        is delayed`,
        type: "late"
        );

        await newLog.save();

        // update task
        task.set( status: "Late" );
        await task.save();
        );
        )






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 28 at 6:10

























        answered Mar 28 at 6:05









        GeraldGerald

        1338 bronze badges




        1338 bronze badges





















            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55388468%2fmongo-for-each-not-doing-the-funtcion%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript