Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Field 'attributeMetaDataList' has reference like

, "path" : "Health & Personal Care > Health > Health Aids > Bathroom Aids & Safety > Bathtub Rails", "attributeMetaDataList" : [    {
        "$ref" : "AttributeMetadata",
        "$id" : ObjectId("50726bd4e4b0adf08145e4f1")
    },  {
        "$ref" : "AttributeMetadata",
        "$id" : ObjectId("50726bd4e4b0adf08145e4f2")
    },  {
        "$ref" : "AttributeMetadata",
        "$id" : ObjectId("50726bd4e4b0adf08145e4f3")
    },  {
        "$ref" : "AttributeMetadata",
        "$id" : ObjectId("50726bd4e4b0adf08145e4f4")
    },  {
        "$ref" : "AttributeMetadata",
        "$id" : ObjectId("50726bd4e4b0adf08145e4f5")
    } ]

i want to remove this reference through the loop.

I have used,

db.Category.find({"path": /Health & Personal Care/}).forEach(function(x){
  x.attributeMetaDataList=$unset
 }
)

this is not working for me. Any Help?

share|improve this question
1  
db.Category.update({"path": /Health & Personal Care/}, {$unset: {attributeMetaDataList: 1}}) Assuming that attributeMetaDataList is the field that holds this reference that is – Sammaye Jan 22 at 10:09
Sorry, its not worked. – Akr Jan 22 at 10:13
Can you edit your question with an example of the doc? – Sammaye Jan 22 at 10:21
I have updated the doc. – Akr Jan 22 at 10:26

1 Answer

db.Category.find({"path":/^Health/}).forEach(function(x){
  db.Category.update({_id:x._id},{$unset:{"attributeMetaDataList":1}})
})

its worked for me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.