in domain/src/main/java/demoapp/dom/_infra/values/ValueHolderRepository.java [63:66]
public List<E> firstAsList() {
List<E> all = all();
return all.isEmpty() ? Collections.emptyList() : Collections.singletonList(all.get(0));
}