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
Copy file name to clipboardexpand all lines: src/main/antora/modules/ROOT/pages/mongodb/mapping/document-references.adoc
+3-1
Original file line number
Diff line number
Diff line change
@@ -487,7 +487,9 @@ We know it is tempting to use all kinds of MongoDB query operators in the lookup
487
487
But there a few aspects to consider:
488
488
489
489
* Make sure to have indexes in place that support your lookup.
490
-
* Mind that resolution requires a server rountrip inducing latency, consider a lazy strategy.
490
+
* Make sure to use the same data types: `@DocumentReference(lookup="{'someRef':?#{#self._id} }")` can easily fail when using `@Id String id` and `String someRef` as ``String @Id``'s are subject to automatic ObjectId conversion (but not other `String` properties containing `ObjectId.toString()`).
491
+
Reference lookup uses values from the resulting `Document` and in that case, it would query a String field using an `ObjectId` yielding no results.
492
+
* Mind that resolution requires a server roundtrip inducing latency, consider a lazy strategy.
491
493
* A collection of document references is bulk loaded using the `$or` operator. +
492
494
The original element order is restored in memory on a best-effort basis.
493
495
Restoring the order is only possible when using equality expressions and cannot be done when using MongoDB query operators.
0 commit comments