Open
Description
Currently we cannot specify hint both using @Query
or @Hint
annotation that could be resolving the value from parameters. For example, The following should work:
@Query(
value = "{ something: ?0}",
hint = "?1"
)
@Hint
Flux<Somthing> findSomething(String something, String hint);
This is working for @Query.value
, but as well for @Query.collation
(see docs) and not for the hint.