WunderGraph Application
Published: 2022-05-23
WunderGraph allows you to merge multiple APIs so that you can use them as one single "virtual" GraphQL API. To accomplish this, you have to pass all the introspected APIs to your Application.
const myApplication = new Application({name: "app",apis: [firstAPI,secondAPI,],})
This myApplication
can then be passed to configureWunderGraphApplication
which generates the config for your project.