Files
backstage/plugins/graphql-backend
Fredrik Adelöw 2881c53cb3 Merge pull request #13252 from backstage/freben/api-well-ok-then
When the 🧹 s go marching in
2022-08-23 13:55:58 +02:00
..
2022-08-19 16:33:06 +02:00
2022-08-19 16:33:06 +02:00
2022-08-23 10:29:17 +00:00
2022-08-23 10:29:17 +00:00

GraphQL Backend

Getting Started

This is the GraphQL Backend plugin.

It is responsible for merging different graphql-plugins together to provide the end schema.

To run it within the backend do:

  1. Register the router in packages/backend/src/index.ts:
const graphqlEnv = useHotMemoize(module, () => createEnv('graphql'));

const service = createServiceBuilder(module)
  .loadConfig(configReader)
  /** several different routers */
  .addRouter('/graphql', await graphql(graphqlEnv));
  1. Start the backend
yarn workspace example-backend start

This will launch the full example backend.