Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 523 Bytes

File metadata and controls

16 lines (12 loc) · 523 Bytes
description
How to connect to an existing database using the TerminusDB JavaScript Client

Connect to a Database

Assuming you have connected with the JavaScript Client, connecting to a database is the same for TerminusDB and TerminusCMS.

The example code below registers your database in woqlClient parameters and then all your calls will be made to this db -

client.db('ExampleDatabase')
client.getSchema().then(result=>{
    console.log(result)
})