Mongoose - Lean with Deep population

Multi tool use
up vote
0
down vote
favorite
I'm using mongoose to populate couple of objects together, when i try to access the parent object and add attribute to it, all is fine, but when editing an attribute inside an object of the parent, changes aren't applied.
let order = await Order.findOne( _id: req.params.id ).populate(
path: 'style',
match: removed: false ,
populate: [
path: 'processes',
match: removed: false ,
populate: path: 'machine_type'
,
path: 'sizes' ]
).lean();
When I try order.style.processes[i].anyAttribute= AnyValue;
the object remains unchanged.
node.js mongodb mongoose
add a comment |
up vote
0
down vote
favorite
I'm using mongoose to populate couple of objects together, when i try to access the parent object and add attribute to it, all is fine, but when editing an attribute inside an object of the parent, changes aren't applied.
let order = await Order.findOne( _id: req.params.id ).populate(
path: 'style',
match: removed: false ,
populate: [
path: 'processes',
match: removed: false ,
populate: path: 'machine_type'
,
path: 'sizes' ]
).lean();
When I try order.style.processes[i].anyAttribute= AnyValue;
the object remains unchanged.
node.js mongodb mongoose
what value you are getting inorder
?
– Alok Deshwal
Nov 10 at 16:01
@AlokDeshwal order.style.processes[i] is an object inside another inside an array which isn't null, when i add any attribute to it then log that variable i can't find my attribute
– mustafabarakat
Nov 11 at 9:08
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm using mongoose to populate couple of objects together, when i try to access the parent object and add attribute to it, all is fine, but when editing an attribute inside an object of the parent, changes aren't applied.
let order = await Order.findOne( _id: req.params.id ).populate(
path: 'style',
match: removed: false ,
populate: [
path: 'processes',
match: removed: false ,
populate: path: 'machine_type'
,
path: 'sizes' ]
).lean();
When I try order.style.processes[i].anyAttribute= AnyValue;
the object remains unchanged.
node.js mongodb mongoose
I'm using mongoose to populate couple of objects together, when i try to access the parent object and add attribute to it, all is fine, but when editing an attribute inside an object of the parent, changes aren't applied.
let order = await Order.findOne( _id: req.params.id ).populate(
path: 'style',
match: removed: false ,
populate: [
path: 'processes',
match: removed: false ,
populate: path: 'machine_type'
,
path: 'sizes' ]
).lean();
When I try order.style.processes[i].anyAttribute= AnyValue;
the object remains unchanged.
node.js mongodb mongoose
node.js mongodb mongoose
edited Nov 10 at 17:08
Yannick Loriot
5,94622545
5,94622545
asked Nov 10 at 15:17
mustafabarakat
97
97
what value you are getting inorder
?
– Alok Deshwal
Nov 10 at 16:01
@AlokDeshwal order.style.processes[i] is an object inside another inside an array which isn't null, when i add any attribute to it then log that variable i can't find my attribute
– mustafabarakat
Nov 11 at 9:08
add a comment |
what value you are getting inorder
?
– Alok Deshwal
Nov 10 at 16:01
@AlokDeshwal order.style.processes[i] is an object inside another inside an array which isn't null, when i add any attribute to it then log that variable i can't find my attribute
– mustafabarakat
Nov 11 at 9:08
what value you are getting in
order
?– Alok Deshwal
Nov 10 at 16:01
what value you are getting in
order
?– Alok Deshwal
Nov 10 at 16:01
@AlokDeshwal order.style.processes[i] is an object inside another inside an array which isn't null, when i add any attribute to it then log that variable i can't find my attribute
– mustafabarakat
Nov 11 at 9:08
@AlokDeshwal order.style.processes[i] is an object inside another inside an array which isn't null, when i add any attribute to it then log that variable i can't find my attribute
– mustafabarakat
Nov 11 at 9:08
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53240326%2fmongoose-lean-with-deep-population%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
Y,r7v,sJ,scEb,gIzelpwy34V vMUJu ux2ZGb,8,RqlAiZ
what value you are getting in
order
?– Alok Deshwal
Nov 10 at 16:01
@AlokDeshwal order.style.processes[i] is an object inside another inside an array which isn't null, when i add any attribute to it then log that variable i can't find my attribute
– mustafabarakat
Nov 11 at 9:08