* Get all nodes in the database
()
| 1066 | * Get all nodes in the database |
| 1067 | */ |
| 1068 | getAllNodes(): Node[] { |
| 1069 | const rows = this.db.prepare('SELECT * FROM nodes').all() as NodeRow[]; |
| 1070 | return rows.map(rowToNode); |
| 1071 | } |
| 1072 | |
| 1073 | /** |
| 1074 | * Stream nodes of one language whose `decorators` JSON array contains |
no test coverage detected