MY ballerina project contains multiple servers.
- HTTP server (runs on port 9095)
- GraphQL server (runs on port 9090)
The HTTP server acts as a proxy server for the GraphQL server.
When I start the Ballerina project with debug mode from the VS Code, only the HTTP server is started with debugging mode (i.e. Supports debugger breakpoints). While the GraphQL server runs without issues, it doesn’t support pausing on the debugger breakpoints.
I want to know how to start the GraphQL server with debugging mode. It’s okay to have the debugging mode only for the GraphQL server and not for the HTTP server.