Interface AnyObjectRepo

All Superinterfaces:
AnyDAO<AnyObject>, AnyObjectDAO, AnyObjectRepoExt, AnyRepoExt<AnyObject>, DAO<AnyObject>, org.springframework.data.repository.PagingAndSortingRepository<Neo4jAnyObject,String>, org.springframework.data.repository.Repository<Neo4jAnyObject,String>

public interface AnyObjectRepo extends org.springframework.data.repository.PagingAndSortingRepository<Neo4jAnyObject,String>, AnyObjectRepoExt, AnyObjectDAO
  • Method Details

    • findKey

      @Query("MATCH (n:AnyObject)-[]-(a:AnyType {id: $type}) WHERE n.name = $name RETURN n.id") Optional<String> findKey(@Param("type") String type, @Param("name") String name)
      Specified by:
      findKey in interface AnyObjectDAO