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
When creating a GraphQL server with Nestjs, if you set a global prefix using app.setGlobalPrefix in main.ts and then set useGlobalPrefix: true in the GraphQLModule configuration, the global prefix is respected for Query and Mutation types but not for Subscription types.
Run the following to test a subscription. By default, the sandbox will use ws://localhost:5000/api/graphql, which is the expected subscription endpoint.
Upon failure to connect, modify the subscription endpoint in the sandbox to ws://localhost:5000/graphql (The endpoint minus the global /api prefix). This should properly instantiate the subscription connection, just on the wrong url path.
Expected behavior
The expected behavior is for the subscription path, whether it be the default /graphql or any other custom path, to be appended to the global prefix when the useGlobalPrefix option is set to true.
Is there an existing issue for this?
Current behavior
When creating a GraphQL server with Nestjs, if you set a global prefix using
app.setGlobalPrefix
inmain.ts
and then setuseGlobalPrefix: true
in theGraphQLModule
configuration, the global prefix is respected forQuery
andMutation
types but not forSubscription
types.Minimum reproduction code
https://github.com/Jake-RoundrockIO/nest-subscription-global-prefix
Steps to reproduce
npm install
npm run start:dev
http://localhost:5000/api/graphql
in the browser to access the Apollo Sandboxws://localhost:5000/api/graphql
, which is the expected subscription endpoint.ws://localhost:5000/graphql
(The endpoint minus the global/api
prefix). This should properly instantiate the subscription connection, just on the wrong url path.Expected behavior
The expected behavior is for the subscription path, whether it be the default
/graphql
or any other custom path, to be appended to the global prefix when theuseGlobalPrefix
option is set totrue
.Package version
10.1.5
Graphql version
graphql
: 16.6.0apollo-server-express
: 3.10.3graphql-ws
: 5.11.2NestJS version
9.1.6
Node.js version
16.14.0
In which operating systems have you tested?
Other
No response
The text was updated successfully, but these errors were encountered: