I'm trying to partially implement a repository using the following structure:
public interface ExampleCustomRepository {
    Iterable<Example> findExamplesByUserId(Long id);
}
@Repository
@Transactional
public class ExampleCustomRepositoryImpl implements ExampleCustomRepository {
    @Autowired
    private Neo4jTemplate template;
    @Override
    public Iterable<Example> findExamplesByUserId(final Long id) {
        // implementation
    }
}
public interface ExampleRepository extends GraphRepository<Example>, ExampleCustomRepository {
}
For some reason the RepositoryFactory wants to create a DerivedGraphRepositoryQuery for this implemented method, and fails:
org.springframework.data.mapping.PropertyReferenceException: No property userId found for type Example!
Is it even possible to partially implement a repository with SDN4? If it is, what am I doing wrong?
 
    