Configure SQLite Data Source

The SQLite data source introspects the database and generates a GraphQL schema.

Example Configuration

1
2
3
4
5
6
7
8
9
10
11
12
13
// wundergraph.config.ts
const db = introspect.sqlite({
apiNamespace: 'wundergraph',
databaseURL: 'file:./my.db',
introspection: {
pollingIntervalSeconds: 5,
},
});
configureWunderGraphApplication({
apis: [db],
});

Define the databaseURL which is file path to the database. To avoid naming conflicts, you should also define an apiNamespace.

The introspection result will be cached in the local file-system to make the development process faster. Otherwise, WunderGraph would introspect the database every time you change an operation.

If you're planning to frequently change the database schema, e.g. during development, you should specify the pollingIntervalSeconds to 5 seconds for example. This will make WunderGraph introspect the database every 5 seconds. If the generated schema is changed, the file-system cache will be updated.

Was this article helpful to you?
Provide feedback

Edit this page