Skip to Content

Configure MySQL DataSource

Published: 2022-05-23

To configure MySQL as a DataSource, you have to use introspection. Import the introspect function from the @wundergraph/sdk. It should be available if you have initialized your project with wunderctl init.

import {
introspect,
} from "@wundergraph/sdk";
const db = introspect.mysql({
apiNamespace: "db",
databaseURL: "mysql://admin:admin@localhost:54333/example",
});

Pass a valid QueryString as an argument to introspect.mysql. This gives you a Promise of an API object. This db object can now be passed to an Application. This way, you're able to combine the generated GraphQL API of the database with other APIs, e.g. a REST or another GraphQL API.

const myApplication = new Application({
name: "app",
apis: [
db,
],
})

Product

Comparisons

Subscribe to our newsletter!

Stay informed when great things happen! Get the latest news about APIs, GraphQL and more straight into your mailbox.

© 2022 WunderGraph