export function finalizeImportedGraph(importedGraph: ImportedDocumentGraph, importId?: string): DocumentGraph {
	// Nothing to do for now.
	// This is the place where future graph migrations should be implemented.
	// (I.e. *not* in DocumentGraphHandler.)
	return wsi4.sl.graph.finalizeImportedGraph(importedGraph, [], [], [], [], importId ?? wsi4.util.createUuid());
}
