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

Matrice aggregata MongoDB con due campi

Usa la map() del cursore di aggregazione ) metodo per restituire un array di ObjectId come segue:

var pipeline = [
    {$match: {warehouse_sku: /^1\_/}},
    {$group: { "_id": "$_id" } }
],
list_products = db.getCollection('products')
                  .aggregate(pipeline)
                  .map(function(doc){ return doc._id });

Il find() map() funzionerebbe anche qui:

var query = {'warehouse_sku': /^1\_/},
    list_products = db.getCollection('products')
                      .find(query)
                      .map(function(doc){ return doc._id });

AGGIORNAMENTO

In pymongo, puoi usare un lambda funzione con la funzione mappa. Poiché map prevede che venga passata una funzione, è anche uno dei luoghi in cui appare regolarmente lambda:

import re
regx = re.compile("^1\_", re.IGNORECASE)
products_cursor = db.products.find({"warehouse_sku": regx})
list_products = list(map((lambda doc: doc["_id"]), products_cursor))