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

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현