No documento do DocumentDB :
Em documento MongoDB :
correspondência de igualdade tem a seguinte sintaxe:
{
$lookup:
{
from: <collection to join>,
localField: <field from the input documents>,
foreignField: <field from the documents of the "from" collection>,
as: <output array field>
}
}
subconsultas não correlacionadas tem a seguinte sintaxe:
{
$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>
}
}
Portanto, a segunda sintaxe não é suportada no DocumentDB.