We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Consider this name derived query:
Flux<Film> findByFilmIdInOrderByFilmIdAsc(Flux<Long> filmIds);
When we get to here:
https://github.com/spring-projects/spring-data-relational/blob/main/spring-data-r2dbc/src/main/java/org/springframework/data/r2dbc/repository/query/PartTreeR2dbcQuery.java#L72
It calls R2dbcQueryCreator.validate() which eventually gets here and fails:
R2dbcQueryCreator.validate()
https://github.com/spring-projects/spring-data-relational/blob/main/spring-data-relational/src/main/java/org/springframework/data/relational/repository/query/RelationalQueryCreator.java#L130
However, this functionality is actually supported here:
https://github.com/spring-projects/spring-data-relational/blob/main/spring-data-r2dbc/src/main/java/org/springframework/data/r2dbc/repository/query/R2dbcParameterAccessor.java#L119