DocumentDB doc में :
MongoDB doc में :
समानता मिलान निम्नलिखित सिंटैक्स है:
{
$lookup:
{
from: <collection to join>,
localField: <field from the input documents>,
foreignField: <field from the documents of the "from" collection>,
as: <output array field>
}
}
असंबद्ध उपश्रेणियां निम्नलिखित सिंटैक्स है:
{
$lookup:
{
from: <collection to join>,
let: { <var_1>: <expression>, …, <var_n>: <expression> },
pipeline: [ <pipeline to execute on the collection to join> ],
as: <output array field>
}
}
तो दूसरा सिंटैक्स DocumentDB में समर्थित नहीं है।