MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

L'operatore `$eq` funziona con la notazione a punti dell'array?

No. $nodes.0 non è un'espressione corretta in $eq aggregation operator , se utilizzato con i campi dell'array.

$eq aggregation operator ha il seguente snytax:

{ $eq: [ <expression1>, <expression2> ] }

Dovrai usare $reduce insieme a $arrayElemAt per accedere al tuo campo nell'operatore $eq:

Query1

db.relations.find({
  $expr: {
    $eq: [
      {
        $reduce: {
          input: [
            {
              $arrayElemAt: [
                "$nodes",
                0
              ]
            }
          ],
          initialValue: false,
          in: {
            "$and": [
              {
                $eq: [
                  "$$this.type",
                  "User"
                ]
              },
              {
                $eq: [
                  "$$this.id",
                  UUID("dc20f7c7-bd45-4fc1-9eb4-3604428fa551")
                ]
              }
            ]
          }
        }
      },
      true
    ]
  }
})

Parco giochi

Alternativa, utilizzando l'operatore $eq { <field>: { $eq: <value> } }

Query2

db.relations.find({
  "$and": [
    {
      "nodes.0.type": {
        $eq: "User"
      }
    },
    {
      "nodes.0.id": {
        $eq: UUID("dc20f7c7-bd45-4fc1-9eb4-3604428fa551")
      }
    }
  ]
})

parco giochi MongoDB

Se desideri eseguire IXSCAN, puoi utilizzare Query2 . Devi creare i seguenti indici:

db.relations.ensureIndex({"nodes.0.id":1})
db.relations.ensureIndex({"nodes.0.type":1})