Package org.openmetadata.service.jdbi3
Interface CollectionDAO.EntityRelationshipDAO
-
- Enclosing interface:
- CollectionDAO
public static interface CollectionDAO.EntityRelationshipDAO
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCollectionDAO.EntityRelationshipDAO.FromRelationshipMapperstatic classCollectionDAO.EntityRelationshipDAO.ToRelationshipMapper
-
Method Summary
-
-
-
Method Detail
-
insert
default void insert(UUID fromId, UUID toId, String fromEntity, String toEntity, int relation)
-
insert
default void insert(UUID fromId, UUID toId, String fromEntity, String toEntity, int relation, String json)
-
bulkInsertToRelationship
default void bulkInsertToRelationship(UUID fromId, List<UUID> toIds, String fromEntity, String toEntity, int relation)
-
insert
void insert(String fromId, String toId, String fromEntity, String toEntity, int relation, String json)
-
bulkInsertTo
void bulkInsertTo(List<CollectionDAO.EntityRelationshipObject> values)
-
findTo
List<CollectionDAO.EntityRelationshipRecord> findTo(String fromId, String fromEntity, List<Integer> relation)
-
findTo
default List<CollectionDAO.EntityRelationshipRecord> findTo(String fromId, String fromEntity, int relation)
-
findTo
List<CollectionDAO.EntityRelationshipRecord> findTo(String fromId, String fromEntity, int relation, String toEntity)
-
findToPipeline
List<CollectionDAO.EntityRelationshipRecord> findToPipeline(String fromId, int relation)
-
findFrom
List<CollectionDAO.EntityRelationshipRecord> findFrom(String toId, String toEntity, int relation, String fromEntity)
-
findFrom
List<CollectionDAO.EntityRelationshipRecord> findFrom(String toId, String toEntity, int relation)
-
findFromPipleine
List<CollectionDAO.EntityRelationshipRecord> findFromPipleine(String toId, int relation)
-
findFrom
List<CollectionDAO.EntityRelationshipRecord> findFrom(String toId)
-
deleteAllWithId
void deleteAllWithId(String id)
-
-