You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
405 B
Java

2 months ago
package com.supervision.pdfqaserver.service;
import com.supervision.pdfqaserver.dto.EREDTO;
/**
*
*/
public interface KnowledgeGraphService {
/**
*
* @param documentId ID
*/
void generateGraph(String documentId);
void queryGraph(String databaseId, String query);
void saveERE(EREDTO eredto, String truncationId);
}