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
If the included param references a field that is an array, then the included results are not returned (for example, _include=Observation:performer). This is because MongoDB's left-join (a.k.a. $lookup) doesn't work with array fields. You need to unwind the arrays and then group them back together again.
If the included param references a field that is an array, then the included results are not returned (for example,
_include=Observation:performer
). This is because MongoDB's left-join (a.k.a.$lookup
) doesn't work with array fields. You need to unwind the arrays and then group them back together again.See:
The text was updated successfully, but these errors were encountered: