Boot the engine worker, open the in-memory database, open a connection.
()
| 52 | export interface LbugEngine { |
| 53 | /** Boot the engine worker, open the in-memory database, open a connection. */ |
| 54 | init(): Promise<void>; |
| 55 | /** Run a Cypher query and return all rows as plain objects. */ |
| 56 | query(cypher: string): Promise<Record<string, unknown>[]>; |
| 57 | /** Run a Cypher statement that returns no rows (DDL, COPY, CALL ...). */ |
no outgoing calls
no test coverage detected