Skip to content

Commit 008f3b1

Browse files
committed
Refine @DocumentReference documentation about self._id references.
Closes #4925
1 parent ef9215e commit 008f3b1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/antora/modules/ROOT/pages/mongodb/mapping/document-references.adoc

+3-1
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,9 @@ We know it is tempting to use all kinds of MongoDB query operators in the lookup
487487
But there a few aspects to consider:
488488
489489
* 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.
491493
* A collection of document references is bulk loaded using the `$or` operator. +
492494
The original element order is restored in memory on a best-effort basis.
493495
Restoring the order is only possible when using equality expressions and cannot be done when using MongoDB query operators.

0 commit comments

Comments
 (0)