Commit 73e77fda by qiuchaofei

图形展开添加file类型

parent a3ba0768
......@@ -65,7 +65,9 @@ public class MetadataRelationServiceImpl implements IMetadataRelationService {
// + "union match p=(n:Neo4jETLScript {metadataId:\""+metadataId+"\"}) <-[r:Composition]->(m) return p ";
}else if(metadataId.startsWith("SQL=")){
cypher="match p=(n:Neo4jETLSql {metadataId:\""+metadataId+"\"}) <-[r:Composition]->(m) return p";
}else {
}else if(metadataId.startsWith("File=")){
cypher = " match p=(n:Neo4jFile {metadataId:\""+metadataId+"\"})"+directionNeo4j+"(m) return p ";
} else {
}
Map<Long, MetaData> longMetaDataMap = new HashMap<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment