* Get statistics about the knowledge graph
()
| 816 | * Get statistics about the knowledge graph |
| 817 | */ |
| 818 | getStats(): GraphStats { |
| 819 | const stats = this.queries.getStats(); |
| 820 | stats.dbSizeBytes = this.db.getSize(); |
| 821 | return stats; |
| 822 | } |
| 823 | |
| 824 | /** |
| 825 | * Active SQLite backend for this project's connection (`node-sqlite` — Node's |