You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Call for field by operator "." it seems to be not working using mongo-java-server.
ex.
"
{
$project: {
user: "$user._id",
},
}
"
where is "user" is a table in this example
Simiar case to mongo function "$toString"
ex. '$toString: "$_id" '
The text was updated successfully, but these errors were encountered:
I think I'm seeing the same issue with $graphFollow. I have documents with the following format and I'm trying to graph follow based on the directReports.employeeId
In mongoplayground.net this is working as expected, with the "allReports" field in the output being populated with all child employees. But using it here I'm seeing that the allReports array is empty like so: "allReports": []
Call for field by operator "." it seems to be not working using mongo-java-server.
ex.
"
{
$project: {
user: "$user._id",
},
}
"
where is "user" is a table in this example
Simiar case to mongo function "$toString"
ex. '$toString: "$_id" '
The text was updated successfully, but these errors were encountered: