mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-03 06:17:29 +08:00
Feat: Search for knowledge-base-level graph nodes. (#17444)
This commit is contained in:
@@ -4,7 +4,11 @@ import request from '@/utils/next-request';
|
||||
export const getDocumentStructureGraph = (
|
||||
datasetId: string,
|
||||
documentId: string,
|
||||
) => request.get(api.documentStructureGraph(datasetId, documentId));
|
||||
keywords?: string,
|
||||
) =>
|
||||
request.get(api.documentStructureGraph(datasetId, documentId), {
|
||||
params: keywords ? { keywords } : undefined,
|
||||
});
|
||||
|
||||
export const deleteDocumentStructureGraph = (
|
||||
datasetId: string,
|
||||
|
||||
Reference in New Issue
Block a user