Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mindsdb.com/llms.txt

Use this file to discover all available pages before exploring further.

You can list all data sources using the code below.
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);