Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mindsdb-dependabot-npm-and-yarn-docs-fast-uri-3-1-2.mintlify.app/llms.txt

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

Description

The getAllProjects() function lists all available projects.

Syntax

Here is how to list all available projects:
const allProjects = await MindsDB.Projects.getAllProjects();
console.log('all projects:')
allProjects.forEach(p => {
  console.log(p.name);
});