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;
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
add a comment |
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
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
add a comment |
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
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
node.js mongodb mongoose
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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();
);
)
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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();
);
)
add a comment |
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();
);
)
add a comment |
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();
);
)
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();
);
)
edited Mar 28 at 6:10
answered Mar 28 at 6:05
GeraldGerald
1338 bronze badges
1338 bronze badges
add a comment |
add a comment |
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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