-
-
Notifications
You must be signed in to change notification settings - Fork 8k
Closed
Labels
needs triageThis issue has not been looked intoThis issue has not been looked intotype: enhancement 🐺
Description
Is there an existing issue that is already proposing this?
- I have searched the existing issues
Is your feature request related to a problem? Please describe it
Multiple endpoints#
Another useful feature of the @nestjs/graphql module is the ability to serve multiple endpoints at once. This lets you decide which modules should be included in which endpoint. By default, GraphQL searches for resolvers throughout the whole app. To limit this scan to only a subset of modules, use the include property.
GraphQLModule.forRoot({
include: [CatsModule],
}),
but in when we use it we get errors in code first approach in graphql
Metadata
Metadata
Assignees
Labels
needs triageThis issue has not been looked intoThis issue has not been looked intotype: enhancement 🐺