Main entry point for GraphLite database operations Represents an open connection to a GraphLite database. Despite being an embedded database, we use "Connection" terminology following the SQLite convention as it represents the connection to the database files. # Examples ```no_run use graphlite_sdk::GraphLite; # fn main() -> Result<(), graphlite_sdk::Error> { // Open a database let db = GraphL
| 33 | /// # } |
| 34 | /// ``` |
| 35 | pub struct GraphLite { |
| 36 | coordinator: Arc<QueryCoordinator>, |
| 37 | } |
| 38 | |
| 39 | impl GraphLite { |
| 40 | /// Open a GraphLite database at the given path |