Reports unresolved document fields specified inside of org.springframework.data.mongodb.repository.Query annotation.

Example:


@Document
class User {
  @Field
  String name;
}

interface UserRepository extends Repository<User, Long> {
  @Query("{ age: { $gt: ?0 } }") // 'age' is highlighted as unresolved
  List<User> findUsersOlderThan(Integer age);
}