Person person = personRepository.save(new Person("someone",30));
// We are trying to load a Person Node Entity, using a completely different
// and abstract defined Node entity - this should fail
AbstractNodeEntity shouldNotWork = abstractNodeEntityRepository.findOne(person.getId());
}