Connecting data sources

After doing the quickstart, you should have a development project which is up and running and connected to your main data storage system.

However, you can plug as many data sources as you want into the same agent.

What can I connect to?

Forest Admin collections map to any of those concepts:

  • Database collections/tables

  • ORM collections

  • Endpoints on SaaS providers (by writing a custom data source)

  • Endpoints on your own API (by writing a custom data source)

Example

In this example, we import tables from a PostgreSQL, MariaDB, and Mongo database into Forest Admin.

const { createAgent } = require('@forestadmin/agent');
const { createSqlDataSource } = require('@forestadmin/datasource-sql');
const { createMongooseDataSource } = require('@forestadmin/datasource-mongoose');

// Plug multiple datasources to a single agent.
const agent = createAgent(options)
  .addDataSource(createSqlDataSource('postgres://user:pass@a.server:5432/mySchema'))
  .addDataSource(createSqlDataSource('mariadb://user:pass@another.server:5432/anotherSchema'))
  .addDataSource(createMongooseDataSource(require('./mongoose-models')));

Last updated

Revision created on 5/31/2023