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

Utilizzo di $ slice con $regex insieme nell'array subDocument in mongodb

Puoi utilizzare una combinazione di $unwind e $match con mongo aggregazione per ottenere l'output previsto come:

db.collection.aggregate({
    $match: {
    "_id": "3691149613248"  // you can skip this condition if not required
    }
}, {
    $unwind: "$following"
}, {
    $match: {
    "following.content_id": {
        $regex: /^369/
    }
    }
}, {
    $group: {
    _id: "$_id",
    "following": {
        $push: "$following"
    }
    }
})

Se vuoi candidarti salta e limit alla query precedente, puoi facilmente utilizzarla come:

db.collection.aggregate({
    $match: {
    "_id": "3691149613248" //use this if you want to filter out by _id
    }
}, {
    $unwind: "$following"
}, {
    $match: {
    "following.content_id": {
        $regex: /^369/
    }
    }
}, {
    $skip: 4  // you can set offset here
}, {
    $limit: 3 // you can set limit here
}, {
    $group: {
    _id: "$_id",
    "following": {
        $push: "$following"
    }
    }
})

MODIFICA :

Se stai utilizzando una versione php inferiore a 5.4, la query sarà come:

$search = "369";
$criteria = array(array("$match" => array("_id" => "3691149613248")),
    array("$unwind" => "$following"),
    array("$match" => array("following.content_id" => array("$regex" => new MongoRegex("/^$search/")))),
    array("$skip" => 4), array("$limit" => 3),
    array("$group" => array("_id" => "$_id", "following" => array("$push" => "$following"))));
$collection - > aggregate($criteria);

Se stai utilizzando una versione PHP successiva alla 5.3, sostituisci semplicemente { e } parentesi graffe con [ e ] rispettivamente.