0

ここに私のスキーマがあります:

var A = new Schema({
    active: Boolean
  , containers: [{
         b: { type: ObjectId, ref: 'B' }
    }]
})

var B = new Schema({
    c: { type: ObjectId, ref: 'C' }
  , d: { type: ObjectId, ref: 'D' }
})

var C = new Schema({ })

var D = new Schema({ })

基本的に、Aには への参照を持つコンテナの配列があり、 にBは およびBへの参照がCありDます。

今、私は a の ID を持っており、 sによって使用されるCセットが必要です。これは可能ですか?何らかの方法でスキーマを変更する必要がありますか?Dactive A

編集:ここに実際のスキーマ

 //Mashup has a number of Containers (containerSchema is a sub-doc)
    //so that the same Component could belong to two different Containers
    var containerSchema = new Schema({
          pos: { top: Number, left: Number }
        , size: { width: Number, height: Number }
        , component: { type: ObjectId, ref: 'Component' }
    })

    var mashupSchema = new Schema({
          name: String
        , desc: String
        , size: { width: Number, height: Number }
        , active: Boolean
        , containers: [containerSchema]
    })

    //I am using 'mongoose-schema-extend' to inherit from componentSchema (waiting for the new PR)
    var componentSchema = new Schema({
          name: String
        , desc: String
    }, { collection : 'components', discriminatorKey : '_type' })

    //now the various components
    var imageComponentSchema = componentSchema.extend({
          url: String
    })

    var textComponentSchema = componentSchema.extend({
          text: String
    })


    var htmlComponentSchema = componentSchema.extend({
          html: String
    })

    //this particular component needs a page and a selector
    //(which could live outside it and belong to multiple components)
    var webComponentSchema = componentSchema.extend({
          page: { type: ObjectId, ref: 'Page' }
        , selector: { type: ObjectId, ref: 'Selector' }
    })

    var pageSchema = new Schema({
          name: String
        , desc: String
        , url: String
        , active: { type: Boolean, default: false }
    })

    var selectorSchema = new Schema({
          desc: String
        , url: String
        , cssPath: String
    })

    ///MODELS
    var Mashup = mongoose.model("Mashup", mashupSchema)
    var Component = mongoose.model("Component", componentSchema)
    var ImageComponent = mongoose.model("ImageComponent", imageComponentSchema)
    var TextComponent = mongoose.model("TextComponent", textComponentSchema)
    var HtmlComponent = mongoose.model("HtmlComponent", htmlComponentSchema)
    var WebComponent = mongoose.model("WebComponent", webComponentSchema)
    var Page = mongoose.model("Page", pageSchema)
    var Selector = mongoose.model("Selector", selectorSchema)
4

2 に答える 2

1

あなたはあまりにも関係的だと思います!今のところ、あなたがしなければならないので、これを効率的に行うことはできないと思います:

  • を持つすべての B を見つけるc: {id}
  • bクエリ 1 の結果のセットであるa を持ち、アクティブなすべての A を見つける
  • 前のクエリで見つけた ID に属する B を見つけます
  • 見つけた B に属する D を見つけます

ここでスキーマを最も確実に非正規化する必要があると思います。たとえば、上記のすべてを 1 つのドキュメントに入れることができます。

{
    Active: true,
    containers: [ // B's
        { c: [
            { _id: X, field1: foo },
            { _id: X, field1: foo },
        ] },
        { d: [
            { _id: X, field1: foo },
            { _id: X, field1: foo },
        ] }
    ]
}

そして、1つのクエリでそれを行うことができます:

db.collection.find(
    { "container.c._id" : your_id, Active: true }, // query
    { "container.d" : 1 } // projection
);
于 2013-08-15T14:35:08.933 に答える