spring-data-mongodb
spring-data-mongodb copied to clipboard
Provides support to increase developer productivity in Java when using MongoDB. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access...
This PR makes sure to apply conversion to non native mongo types when the context does not expose fields. Resolves: #4722
**[Jesse Kuhnert](https://jira.spring.io/secure/ViewProfile.jspa?name=jkuhnert)** opened **[DATAMONGO-2104](https://jira.spring.io/browse/DATAMONGO-2104?redirect=false)** and commented The apt-maven-plugin / MongoAnnotationProcessor querydsl generation combination for spring mongo does not appear to be picking up and adding near / distance calculation support...
This is similar to already closed https://github.com/spring-projects/spring-data-mongodb/issues/4285. If I include `$replaceRoot` stage, aggregation fails with `CodecConfigurationException`. Below is the (bit anonymized) aggregation itself. Workaround is to use `$project` instead of...
Hi, I am using a sparse index on the field `fieldFoo` and to best utilize it, I need to add an extra `$exists` condition before the `$eq`one. When I manually...
I do not see the VectorSearch aggregation pipeline available in the Aggregation package. Is this something on the roadmap?
Hi. When you create an aggregation pipeline and use a sort operation with `Sort.unsorted()` an exception is thrown (`UncategorizedMongoDbException`). The reason for the exception is, that the sort stage is...
It'd be nice to execute all update options in update repositories like: ``` @Query("{}") @Update("{${'$'}set: {'productDetails.${'$'}[elem].isExcluded': false}}, {arrayFilters: [{'elem.id': ?0}]}") suspend fun deleteProductDetailById(productId: String): Int ``` But mongo repositories seems...
Hello! I would like to describe a problem with replacement of annotation ```@DBRef``` to annotation ```@DocumentReference``` in case old data in MongoDB exist. For this purpose I have created a...