How to delete a certain field in an array inside Meteor collection?
I can't delete a field inside an array in Meteor collection. Here is the structure of my collection:
I have tried this:
SMUProfiles.update({
owner: this.userId,
'classrooms.owner': classroom_id,
}, {
$pull: {
'classroom.$.owner': classroom_id
}
}
)
but unsuccessful.
I want to delete any of the key under 'owner' array, and I only have reference to its value, and not their index. In this case, I have a reference to 6Yi64LqpqnfsHv4ms
as classroom_id
.
javascript reactjs mongodb meteor
add a comment |
I can't delete a field inside an array in Meteor collection. Here is the structure of my collection:
I have tried this:
SMUProfiles.update({
owner: this.userId,
'classrooms.owner': classroom_id,
}, {
$pull: {
'classroom.$.owner': classroom_id
}
}
)
but unsuccessful.
I want to delete any of the key under 'owner' array, and I only have reference to its value, and not their index. In this case, I have a reference to 6Yi64LqpqnfsHv4ms
as classroom_id
.
javascript reactjs mongodb meteor
add a comment |
I can't delete a field inside an array in Meteor collection. Here is the structure of my collection:
I have tried this:
SMUProfiles.update({
owner: this.userId,
'classrooms.owner': classroom_id,
}, {
$pull: {
'classroom.$.owner': classroom_id
}
}
)
but unsuccessful.
I want to delete any of the key under 'owner' array, and I only have reference to its value, and not their index. In this case, I have a reference to 6Yi64LqpqnfsHv4ms
as classroom_id
.
javascript reactjs mongodb meteor
I can't delete a field inside an array in Meteor collection. Here is the structure of my collection:
I have tried this:
SMUProfiles.update({
owner: this.userId,
'classrooms.owner': classroom_id,
}, {
$pull: {
'classroom.$.owner': classroom_id
}
}
)
but unsuccessful.
I want to delete any of the key under 'owner' array, and I only have reference to its value, and not their index. In this case, I have a reference to 6Yi64LqpqnfsHv4ms
as classroom_id
.
javascript reactjs mongodb meteor
javascript reactjs mongodb meteor
asked Jan 3 at 0:08
Hafiz HanifHafiz Hanif
7911
7911
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Did you try
SMUProfiles.update({
owner: this.userId,
}, {
$pull: {
'classrooms.owner': classroom_id
}
}
)
I think simple pull operator with object path should be enough to pull elements from array.
add a comment |
Apparently, there's no easy way to do that currently. So, for the benefit of others who might be looking at a similar problem, here's my solution:
//** Method for deleting Classroom */
'classroom.delete'(classroom_id){
if(!this.userId){
throw new Meteor.Error('not-authorised');
}
Classrooms.remove(classroom_id)
let classids = Classrooms.find({ owner: this.userId
}).fetch().map(function(classrooms){
return classrooms._id })
//console.log(classids);
SMUProfiles.update({
owner: this.userId,
}, {
$set: {
'classrooms.owner': classids
}
}
)
},
The story behind this solution:
I have 2 collections Classrooms
and SMUProfiles
. Upon registration, a new record will be created under SMUProfile for that user, containing several other details (refer to the picture attached in the question above), including a record of the classroom ids that user has created.
Now, when the user delete a classroom in Classrooms
collection, i need to also delete the id of the classroom that has been deleted, in SMUProfile
. I was originally trying to delete the id from the array of ids in SMUProfile
but was not successful.
I solved this by re-reading the Classrooms
collection after a classroom has been deleted, re-iterate the ids of the remaining classrooms inside an array, and $set
that new array of classrooms ids to SMUProfile
.
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%2f54014793%2fhow-to-delete-a-certain-field-in-an-array-inside-meteor-collection%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Did you try
SMUProfiles.update({
owner: this.userId,
}, {
$pull: {
'classrooms.owner': classroom_id
}
}
)
I think simple pull operator with object path should be enough to pull elements from array.
add a comment |
Did you try
SMUProfiles.update({
owner: this.userId,
}, {
$pull: {
'classrooms.owner': classroom_id
}
}
)
I think simple pull operator with object path should be enough to pull elements from array.
add a comment |
Did you try
SMUProfiles.update({
owner: this.userId,
}, {
$pull: {
'classrooms.owner': classroom_id
}
}
)
I think simple pull operator with object path should be enough to pull elements from array.
Did you try
SMUProfiles.update({
owner: this.userId,
}, {
$pull: {
'classrooms.owner': classroom_id
}
}
)
I think simple pull operator with object path should be enough to pull elements from array.
edited Jan 4 at 7:25
answered Jan 3 at 4:21
SasikanthSasikanth
2,64511442
2,64511442
add a comment |
add a comment |
Apparently, there's no easy way to do that currently. So, for the benefit of others who might be looking at a similar problem, here's my solution:
//** Method for deleting Classroom */
'classroom.delete'(classroom_id){
if(!this.userId){
throw new Meteor.Error('not-authorised');
}
Classrooms.remove(classroom_id)
let classids = Classrooms.find({ owner: this.userId
}).fetch().map(function(classrooms){
return classrooms._id })
//console.log(classids);
SMUProfiles.update({
owner: this.userId,
}, {
$set: {
'classrooms.owner': classids
}
}
)
},
The story behind this solution:
I have 2 collections Classrooms
and SMUProfiles
. Upon registration, a new record will be created under SMUProfile for that user, containing several other details (refer to the picture attached in the question above), including a record of the classroom ids that user has created.
Now, when the user delete a classroom in Classrooms
collection, i need to also delete the id of the classroom that has been deleted, in SMUProfile
. I was originally trying to delete the id from the array of ids in SMUProfile
but was not successful.
I solved this by re-reading the Classrooms
collection after a classroom has been deleted, re-iterate the ids of the remaining classrooms inside an array, and $set
that new array of classrooms ids to SMUProfile
.
add a comment |
Apparently, there's no easy way to do that currently. So, for the benefit of others who might be looking at a similar problem, here's my solution:
//** Method for deleting Classroom */
'classroom.delete'(classroom_id){
if(!this.userId){
throw new Meteor.Error('not-authorised');
}
Classrooms.remove(classroom_id)
let classids = Classrooms.find({ owner: this.userId
}).fetch().map(function(classrooms){
return classrooms._id })
//console.log(classids);
SMUProfiles.update({
owner: this.userId,
}, {
$set: {
'classrooms.owner': classids
}
}
)
},
The story behind this solution:
I have 2 collections Classrooms
and SMUProfiles
. Upon registration, a new record will be created under SMUProfile for that user, containing several other details (refer to the picture attached in the question above), including a record of the classroom ids that user has created.
Now, when the user delete a classroom in Classrooms
collection, i need to also delete the id of the classroom that has been deleted, in SMUProfile
. I was originally trying to delete the id from the array of ids in SMUProfile
but was not successful.
I solved this by re-reading the Classrooms
collection after a classroom has been deleted, re-iterate the ids of the remaining classrooms inside an array, and $set
that new array of classrooms ids to SMUProfile
.
add a comment |
Apparently, there's no easy way to do that currently. So, for the benefit of others who might be looking at a similar problem, here's my solution:
//** Method for deleting Classroom */
'classroom.delete'(classroom_id){
if(!this.userId){
throw new Meteor.Error('not-authorised');
}
Classrooms.remove(classroom_id)
let classids = Classrooms.find({ owner: this.userId
}).fetch().map(function(classrooms){
return classrooms._id })
//console.log(classids);
SMUProfiles.update({
owner: this.userId,
}, {
$set: {
'classrooms.owner': classids
}
}
)
},
The story behind this solution:
I have 2 collections Classrooms
and SMUProfiles
. Upon registration, a new record will be created under SMUProfile for that user, containing several other details (refer to the picture attached in the question above), including a record of the classroom ids that user has created.
Now, when the user delete a classroom in Classrooms
collection, i need to also delete the id of the classroom that has been deleted, in SMUProfile
. I was originally trying to delete the id from the array of ids in SMUProfile
but was not successful.
I solved this by re-reading the Classrooms
collection after a classroom has been deleted, re-iterate the ids of the remaining classrooms inside an array, and $set
that new array of classrooms ids to SMUProfile
.
Apparently, there's no easy way to do that currently. So, for the benefit of others who might be looking at a similar problem, here's my solution:
//** Method for deleting Classroom */
'classroom.delete'(classroom_id){
if(!this.userId){
throw new Meteor.Error('not-authorised');
}
Classrooms.remove(classroom_id)
let classids = Classrooms.find({ owner: this.userId
}).fetch().map(function(classrooms){
return classrooms._id })
//console.log(classids);
SMUProfiles.update({
owner: this.userId,
}, {
$set: {
'classrooms.owner': classids
}
}
)
},
The story behind this solution:
I have 2 collections Classrooms
and SMUProfiles
. Upon registration, a new record will be created under SMUProfile for that user, containing several other details (refer to the picture attached in the question above), including a record of the classroom ids that user has created.
Now, when the user delete a classroom in Classrooms
collection, i need to also delete the id of the classroom that has been deleted, in SMUProfile
. I was originally trying to delete the id from the array of ids in SMUProfile
but was not successful.
I solved this by re-reading the Classrooms
collection after a classroom has been deleted, re-iterate the ids of the remaining classrooms inside an array, and $set
that new array of classrooms ids to SMUProfile
.
answered Jan 3 at 2:02
Hafiz HanifHafiz Hanif
7911
7911
add a comment |
add a comment |
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%2f54014793%2fhow-to-delete-a-certain-field-in-an-array-inside-meteor-collection%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