You can list all data sources using the code below.
Copy
Ask AI
const query = 'SHOW FULL DATABASES WHERE type = \'data\'';result = await MindsDB.SQL.runQuery(query); // alternative for ES6 module syntax: MindsDB.default.SQL.runQuery(query)console.log(result);