Я использую Spring с elasti c search. У меня есть два объекта:
@Document(indexName = "user")
public class user {
// unique id of client
@Id
private Long id;
//The email of the user
private String email;
@Field(type = FieldType.Nested, includeInParent = true)
private List<Company> companyList = new ArrayList<>();
}
и
public class Company {
private Long companyId;
//The name of the company
private String name;
private String city;
}
Как я могу получить просто название компании по ее идентификатору, зная, что у меня нет идентификатора пользователя?
Спасибо