Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot inject GraphQLFactory into forRootAsync factory/class #52

Closed
michaelbromley opened this issue Sep 3, 2018 · 10 comments
Closed

Comments

@michaelbromley
Copy link

michaelbromley commented Sep 3, 2018

I'm submitting a...


[ x ] Bug report

Current behavior

When I try to inject GraphQLFactory into either a factory function or a class passed to GraphQLModule.forRootAsync(), the app fails to bootstrap, with no error displayed in the console.

Expected behavior

I think I should be able to inject GraphQLFactory and use it in a factory or class passed to .forRootAsync().

Minimal reproduction of the problem with instructions

  1. git clone git@github.com:nestjs/nest.git
  2. cd nest/sample/12-graphql-apollo
  3. npm install
  4. edit app.module.ts to look like:
imports: [
    CatsModule,
    GraphQLModule.forRootAsync({
      useFactory(graphQLFactory: GraphQLFactory) {
        return {
          typePaths: ['./**/*.graphql'],
          installSubscriptionHandlers: true,
        };
      },
      inject: [GraphQLFactory]
    }),
  ],
  1. npm run start

What is the motivation / use case for changing the behavior?

I want to use the GraphQLFactory.mergeTypesByPaths() method to do some pre-processing of my schema when bootstrapping my app. Up until today I was using the old v3.0.0 way of configuring graphql, where I could inject GraphQLFactory into my AppModule.

Now I am upgrading to v5.1.0 and it seems that when I try to inject GraphQLFactory into either a factory function or a class passed to GraphQLModule.forRootAsync(), the app fails to bootstrap with no error.

Environment


Nest version: 5.3.0

"@nestjs/common": "^5.3.0",
"@nestjs/core": "^5.3.0",
"@nestjs/graphql": "^5.1.0",
@kamilmysliwiec
Copy link
Member

Fixed in v5.1.1. Thanks for reporting!

@michaelbromley
Copy link
Author

This still appears to be broken for me in v5.1.1.

@kamilmysliwiec
Copy link
Member

Weird 😢 Reopening

@kamilmysliwiec
Copy link
Member

kamilmysliwiec commented Sep 4, 2018

Alright.
So basically GraphQLFactory depends on ResolversExplorerService and a few others which in turn depends on GRAPHQL_MODULE_OPTIONS. It creates a circular infinite dependency. Since mergeTypesByPaths doesn't need options object, we could extract this method to another class.

@matcic
Copy link

matcic commented Sep 4, 2018

@kamilmysliwiec I was about to open the same issue and was going to suggest what you just said. Just in case the following is what I'm using for now @michaelbromley:

import { fileLoader, mergeTypes } from 'merge-graphql-schemas';
import { flatten } from 'lodash';

export function mergeGraphqlTypes(...patterns: string[]): string {
  const files = patterns.map(pattern => fileLoader(pattern));
  return mergeTypes(flatten(files));
}

@kamilmysliwiec
Copy link
Member

One question @matcic @michaelbromley, could you share your sample use-cases of mergeGraphqlTypes? It might be useful for another feature that I'm planning to introduce very soon.

@michaelbromley
Copy link
Author

michaelbromley commented Sep 4, 2018

Sure, here's my use-case (this is prior to Apollo Server v2 migration, so using the old style):

https://github.com/vendure-ecommerce/vendure/blob/7f35f10a12392558decd3c285988113aa37ab175/server/src/app.module.ts#L91-L104

    private createSchema(customFields: CustomFields) {
        const typeDefs = this.graphQLFactory.mergeTypesByPaths(__dirname + '/**/*.graphql');
        const extendedTypeDefs = addGraphQLCustomFields(typeDefs, customFields);
        return this.graphQLFactory.createSchema({
            typeDefs: extendedTypeDefs,
            resolverValidationOptions: {
                requireResolversForResolveType: false,
            },
            resolvers: {
                JSON: GraphQLJSON,
                DateTime: GraphQLDateTime,
            },
        });
    }

The addGraphQLCustomFields() function is internally using graphql-js's extendSchema function to extend the existing objects with new fields according to user config. Implementation is here.

@matcic thanks - that's pretty much exactly what I've got at the moment ;)

@matcic
Copy link

matcic commented Sep 5, 2018

@kamilmysliwiec my use-case is related to microservices: the idea is to have one schema per microservice (which in turn is generated by merging together several types belonging to different models) and then to merge all schemas into one. I am using Graphql bindings behind the scenes in order to delegate requests to the appropriate endpoint.
I am actually in the process of designing such architecture with a special focus on user authorization - I am pre-processing all resolvers as well in order to create some permission wrappers that can be applied through graphql-middleware. I am afraid I cannot share a complete implementation yet, but I'd be interested in knowing more about the feature you are planning to introduce 😄

@kamilmysliwiec
Copy link
Member

Thanks for sharing your use-cases @matcic @michaelbromley, appreciate that ❤️ I have just published 5.2.0, you can use GraphQLTypesLoader now (exported from the root).

@lock
Copy link

lock bot commented Apr 25, 2020

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@lock lock bot locked as resolved and limited conversation to collaborators Apr 25, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants