File metadata for incremental updates Tracks which files have been processed and their content hash

interface FileMetadata {
    contentHash: string;
    filePath: string;
    lastProcessed: Date;
    nodeIds: number[];
}

Properties

contentHash: string
filePath: string
lastProcessed: Date
nodeIds: number[]