getActiveNotes

abstract fun getActiveNotes(): Flow<List<Note>>

Retrieves all active (not soft-deleted) notes from the 'notes' table. Active notes are those where the 'isDeleted' flag is 0 (false). The results are ordered by timestamp in descending order (newest first).

Return

A Flow emitting a list of active Note objects.