You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
graphql-gateway-java exposes data from various graph microservices using a single unified GraphQL schema. These microservices can be dynamically
registered with the Gateway using the /register endpoint. It uses graphql orchestrator library for federating schemas from
various data providers.
Highlights:
Dynamic registration so that the gateway is loosely coupled with the provider development lifecycle.
Registering REST endpoints using the @adapter directive and Service DSL
When running the application locally, localstack is used to mock AWS S3. Follow these steps to start the application.
Build the project:
mvn clean install
Run aws configure. Enter any value to the prompts presented. Since localstack is used, a real AWS credential is not needed, but make sure to input a valid region name (e.g. us-west-1) and output format (e.g. json).
aws configure
Start Docker daemon if not already running.
Start the local registry. This starts a localstack docker container.
./local_registry/start.sh
Set up the local registry. This will initialize the registry with example service providers in local_registry folder.
./local_registry/setup.sh --empty-registry
Start the application. Once started, it listens on port 7000.
./run.sh
OR
Run the class GraphqlGatewayApplication as Spring Application using IntelliJ. Set the active profile as local.
NOTE: You do not need to restart the application when you register a new provider service.